/* ============================================================
   auth.truthly.ai — V2 Password Reset Screens (#11–#14)
   Extends styles-v2.css — uses same design tokens.
   ============================================================ */

/* --- Heading for all password-reset screens --- */
.v2-pw-reset-heading {
  font-family: var(--v2-font-family);
  /* Figma uses 24px / 1.2 / 600 uniformly for every Step-2 heading.
     Was 22px / 1.3; bumped to match .v2-screen-heading__title. */
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--v2-text-bold);
  text-align: center;
  margin: 0 0 var(--v2-space-xs) 0;
}

/* --- Password hint (below new-password field) --- */
.v2-pw-reset-hint {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--v2-text-subtle);
  text-align: left;
  margin: -8px 0 0 0;
  padding-left: 2px;
}

/* --- State overlay for expired / used / error --- */
.v2-pw-reset-state-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--v2-space-m);
  padding: var(--v2-space-l) 0;
}

.v2-pw-reset-state-icon {
  font-size: 40px;
  line-height: 1;
  text-align: center;
}

/* --- Success icon --- */
.v2-pw-reset-success-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #4ade80;
  margin-bottom: var(--v2-space-xs);
}

.v2-pw-reset-success-icon svg {
  width: 48px;
  height: 48px;
}

/* --- Countdown text --- */
.v2-pw-reset-countdown {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--v2-text-subtle);
  text-align: center;
  margin: 0;
}

/* --- Responsive --- */
@media (max-width: 480px) {
  .v2-pw-reset-heading {
    font-size: 22px;
  }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  .v2-pw-reset-success-icon svg {
    animation: none;
  }
}
