/* Ajustes del login Nova para administración Aether */

:root {
  --aether-brand-red: #E40046;
  --aether-brand-red-dark: #b8003a;
}

.form-login .login__input {
  color: #111827 !important;
  -webkit-text-fill-color: #111827 !important;
  caret-color: #111827;
}

.form-login .login__input::placeholder {
  color: #6b7280 !important;
  -webkit-text-fill-color: #6b7280 !important;
  opacity: 1;
}

.form-login .login__input:-webkit-autofill,
.form-login .login__input:-webkit-autofill:hover,
.form-login .login__input:-webkit-autofill:focus {
  -webkit-text-fill-color: #111827 !important;
  box-shadow: 0 0 0 1000px #ffffff inset !important;
}

.form-login .login__label {
  color: #374151 !important;
}

.form-login .login__welcome-message {
  color: var(--aether-brand-red) !important;
  font-weight: 700 !important;
}

.auth-subtitle {
  color: var(--aether-brand-red) !important;
  font-size: 14px;
  margin: 0 0 8px;
  opacity: 1;
}

.otp-timer {
  text-align: center;
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--aether-brand-red) !important;
  font-weight: 500;
}

.otp-timer strong {
  font-variant-numeric: tabular-nums;
  font-size: 18px;
  color: var(--aether-brand-red-dark) !important;
  font-weight: 700;
}

.otp-timer.is-expired {
  color: var(--aether-brand-red-dark) !important;
}

.otp-timer.is-expired strong {
  color: #991b1b !important;
}

.auth-link-muted {
  color: var(--aether-brand-red) !important;
  opacity: 0.92;
  text-decoration: none;
  font-size: 13px;
}

.auth-link-muted:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Campo contraseña + ojito */
.pwd-field {
  position: relative;
  margin-bottom: 0.35rem;
}

.pwd-field .login__input {
  padding-right: 3rem;
}

.pwd-toggle {
  position: absolute;
  right: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #6b7280;
  cursor: pointer;
  padding: 0.35rem;
  line-height: 1;
  font-size: 1.15rem;
}

.pwd-toggle:hover {
  color: var(--aether-brand-red);
}

/* Checklist de requisitos (rojo → verde) */
.pwd-checklist {
  list-style: none;
  margin: 0.35rem 0 1rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  background: rgba(228, 0, 70, 0.06);
  border: 1px solid rgba(228, 0, 70, 0.12);
}

.pwd-checklist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  margin: 0.28rem 0;
  transition: color 0.2s ease;
}

.pwd-checklist li::before {
  content: '●';
  font-size: 0.7rem;
  line-height: 1;
}

.pwd-checklist li.is-fail {
  color: #dc2626;
}

.pwd-checklist li.is-ok {
  color: #15803d;
}

.pwd-checklist li.is-ok::before {
  content: '✓';
  font-weight: 700;
}
