.checker-box {
  max-width: 520px;
  margin: auto;
}

.password-container {
  position: relative;
}

#passwordInput {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 2px solid #ccc;
  font-size: 16px;
  transition: 0.3s;
}

.toggle-eye {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
}

/* Eye toggle fix */
.toggle-eye span {
  display: none;
}

.toggle-eye .eye-show {
  display: inline;
}

.toggle-eye.active .eye-show {
  display: none;
}

.toggle-eye.active .eye-hide {
  display: inline;
}


.strength-wrapper {
  margin-top: 12px;
  display: none;
}

.strength-bar-bg {
  height: 10px;
  background: #eee;
  border-radius: 6px;
  overflow: hidden;
}

.strength-bar-fill {
  height: 100%;
  width: 0%;
  transition: width 0.4s ease;
}

.strength-text {
  margin-top: 6px;
  font-weight: 600;
}

.extra-info {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.9;
}

.suggestions {
  margin-top: 10px;
  padding-left: 18px;
  font-size: 14px;
}


/* COLORS */
.very-weak { width: 20%; background: #ff4d4d; }
.weak { width: 40%; background: #ff884d; }
.medium { width: 60%; background: #ffc107; }
.strong { width: 80%; background: #4caf50; }
.very-strong { width: 100%; background: #00c853; }

/* INPUT BORDER COLORS */
.border-very-weak { border-color: #ff4d4d !important; }
.border-weak { border-color: #ff884d !important; }
.border-medium { border-color: #ffc107 !important; }
.border-strong { border-color: #4caf50 !important; }
.border-very-strong { border-color: #00c853 !important; }