/* Container autour du formulaire pour un max width et centrage */
.auth-forgot-container {
  max-width: 420px;
  margin: 60px auto 40px;
  padding: 30px 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgb(0 0 0 / 0.08);
}

/* Titre / explication */
.auth-forgot-container > div:first-child {
  font-size: 15px;
  color: #4b5563; /* gray-600 */
  margin-bottom: 1.25rem; /* 20px */
  line-height: 1.5;
}

/* Bouton personnalisé */
.auth-forgot-container button {
  background-color: #f97316; /* orange-500 */
  color: white;
  font-weight: 600;
  padding: 12px 0;
  border-radius: 8px;
  width: 100%;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.auth-forgot-container button:hover {
  background-color: #ea580c; /* orange-600 */
}

/* Message d'erreur */
.mt-2 p {
  color: #dc2626; /* red-600 */
  font-size: 0.875rem; /* 14px */
}

/* Session status message */
.auth-forgot-container x-auth-session-status {
  margin-bottom: 1rem;
}

/* Input label et input : utilisation des composants blade, donc gardés avec Tailwind */
