/* ----------------------------------------------------------------------------
   Pages d'authentification : login, inscription, demande envoyée
---------------------------------------------------------------------------- */
.auth-body {
  background: linear-gradient(135deg, #FBF7F2 0%, #F4D8C5 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.auth-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px 24px;
  width: 100%;
  max-width: 420px;
  animation: fadeUp 300ms ease;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.auth-brand { text-align: center; margin-bottom: 24px; }
.auth-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--c-primary);
  color: #fff;
  border-radius: 50%;
  margin-bottom: 8px;
  box-shadow: var(--shadow);
}
.auth-brand h1 { margin: 0; color: var(--c-text); font-size: 1.6rem; }
.auth-brand p { margin: 4px 0 0; color: var(--c-text-soft); }
.auth-form { margin-top: 18px; }
.auth-alt { text-align: center; margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--c-border); }
.auth-alt p { color: var(--c-text-soft); }
.auth-alt a { color: var(--c-text-soft); }
.auth-success p { margin-bottom: 8px; }
