/* =============================================
   Forgot Password Page Styles
   ============================================= */

.reset-step {
  animation: fadeIn 0.3s ease-out;
}

.reset-description {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 24px;
  text-align: center;
}

.forgot-password-link {
  text-align: center;
  margin-top: 16px;
}

.forgot-password-link a {
  color: var(--accent);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.forgot-password-link a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.back-to-login {
  text-align: center;
  margin-top: 20px;
}

.back-to-login a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.back-to-login a:hover {
  color: var(--text-primary);
}

.resend-otp {
  text-align: center;
  margin-top: 16px;
}

.resend-otp p {
  color: var(--text-secondary);
  font-size: 13px;
  margin: 0;
}

.resend-otp a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.resend-otp a:hover {
  text-decoration: underline;
}

/* OTP Input Styling */
#otp {
  text-align: center;
  font-size: 24px;
  letter-spacing: 8px;
  font-family: 'Courier New', monospace;
  font-weight: 600;
}

/* Success Step */
.success-icon {
  text-align: center;
  margin-bottom: 24px;
}

.success-icon svg {
  width: 64px;
  height: 64px;
  fill: var(--accent);
}

.success-title {
  text-align: center;
  color: var(--text-primary);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 16px;
}

.success-message {
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 32px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
