/* auth-password-reset.css - Custom styles for the password reset form */

.auth-password-reset-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background removed for white page */
}

.auth-password-reset-card {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 4px 32px rgba(9, 9, 51, 0.1), 0 1.5px 6px rgba(9, 9, 51, 0.08);
  max-width: 600px;
  width: 100%;
  padding: 2.5rem 2rem;
  margin: 0 auto;
}

.auth-password-reset-card h2 {
  font-weight: 700;
  color: #090933;
}

.auth-password-reset-card .form-label {
  font-weight: 600;
  color: #090933;
}

.auth-password-reset-card .btn-navy {
  background-color: #090933;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  font-size: 1.1rem;
  padding: 10px 0;
}

.auth-password-reset-card .btn-navy:active,
.auth-password-reset-card .btn-navy:focus {
  background-color: #07072a;
  color: #fff;
}

.auth-password-reset-card .login-links a {
  color: #090933;
  text-decoration: underline;
  font-size: 0.98rem;
}

.auth-password-reset-card .login-links a:hover {
  color: #0056b3;
}

.auth-password-reset-card .alert {
  font-size: 0.98rem;
  border-radius: 6px;
}

.auth-password-reset-card .login-security-notice {
  background: #f0f4fa;
  border-left: 4px solid #090933;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  margin-bottom: 1.25rem;
  color: #090933;
  font-size: 0.97rem;
}
