/* Forgot password */

/* Reset / Auth Pages – Clean, modern card-based design */

.auth-container {
  max-width: 400px;
  margin: 60px auto;
  padding: 32px 24px;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.auth-container--centered {
  text-align: center;
}

.auth-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 16px;
}

.auth-title--success {
  color: #2e7d32; /* green for success */
}

.auth-description {
  font-size: 1rem;
  color: #555;
  margin: 0 0 24px;
  line-height: 1.5;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.auth-form p {
  margin: 0; /* reset django's default margins on as_p */
}

.auth-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #333;
}

.auth-form input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.auth-form input:focus {
  outline: none;
  border-color: #0066cc;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.auth-button {
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.auth-button--primary {
  background: #0066cc;
  color: white;
  border: none;
}

.auth-button--primary:hover {
  background: #0055aa;
}

.auth-button--link {
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

.auth-error {
  color: #d32f2f;
  font-weight: 500;
  margin: 0 0 16px;
  line-height: 1.5;
}

.auth-back {
  margin-top: 28px;
  font-size: 0.95rem;
}

.auth-link {
  color: #0066cc;
  text-decoration: none;
  font-weight: 500;
}

.auth-link:hover {
  text-decoration: underline;
}

/* Optional: make form fields look better with Django's default classes */
ul.errorlist {
  color: #d32f2f;
  font-size: 0.9rem;
  margin: 4px 0 0;
  padding-left: 0;
  list-style: none;
}

