
/* SECTION */
.password-section {
  background: #000;
  padding: 64px 80px;
}

.password-container {
  max-width: 1280px;
  margin: auto;
  background: #232323;
  border-radius: 32px;
  padding: 40px;
}

.password-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

label {
  color: #fff;
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
}

label span {
  color: red;
}

.input-wrapper {
  position: relative;
}

input {
  width: 100%;
  background: #3B3B3B;
  border: none;
  border-radius: 14px;
  padding: 16px;
  color: #fff;
  font-size: 14px;
}

input:focus {
  outline: none;
}

/* TOGGLE ICON */
.toggle-password {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 0.7;
}

.toggle-password:hover {
  opacity: 1;
}

.toggle-password svg {
  display: none;
}

.toggle-password .eye-open {
  display: block;
}

/* STRENGTH */
.strength-meter {
  height: 4px;
  background: #2e2e2e;
  border-radius: 2px;
  margin-top: 8px;
}

.strength-meter span {
  height: 100%;
  width: 0;
  display: block;
  transition: width .3s;
}

.strength-weak { width: 33%; background: #ff4d4d; }
.strength-medium { width: 66%; background: #fbbf24; }
.strength-strong { width: 100%; background: #22c55e; }

/* ERROR */
.error-text {
  display: none;
  font-size: 12px;
  color: #ff5c5c;
  margin-top: 6px;
}

.form-group.error .error-text {
  display: block;
}

.form-group.error input {
  border: 1px solid #ff5c5c;
}

/* BUTTON */
.submit-btn {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(101.67deg,#93C3FD,#7D86ED 45.89%,#5B63ED);
}

/* RESPONSIVE */
@media (max-width:1024px){.password-section{padding:56px 80px}}
@media (max-width:768px){.password-section{padding:56px 32px}}
@media (max-width:576px){.password-section{padding:48px 20px}}
