/* Auth / pages Phase 1 — s'appuie sur les variables de style.css */
.auth-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(251,202,0,0.10), transparent 60%),
    var(--black);
}
.auth-card {
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-lg);
  border-top: 5px solid var(--yellow);
  text-align: center;
}
.auth-card-wide { max-width: 520px; }
.auth-logo { display: inline-block; margin-bottom: 1rem; }
.auth-logo img { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; margin: 0 auto; }
.auth-title { font-size: 2rem; text-transform: uppercase; margin-bottom: 0.25rem; }
.auth-sub { color: var(--text-light); font-size: 0.92rem; margin-bottom: 1.5rem; }
.auth-card form { text-align: left; }
.auth-alert {
  background: var(--red-light);
  color: var(--red);
  border: 1px solid rgba(229,57,53,0.3);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-align: left;
}
.auth-foot { margin-top: 1.5rem; font-size: 0.88rem; color: var(--text-light); }
.auth-foot a { color: var(--yellow-dark); font-weight: 800; }
.auth-note { font-size: 0.8rem; color: var(--text-muted); margin: 0.75rem 0 0; }
.opt { color: var(--text-muted); font-weight: 400; text-transform: none; letter-spacing: 0; }
.badge-role {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  padding: 0.1rem 0.6rem;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
}
.auth-links { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; margin: 1.5rem 0 0.5rem; }
.btn-outline-dark { color: var(--black); border-color: var(--gray-2); }
.btn-outline-dark:hover { border-color: var(--yellow); color: var(--yellow-dark); }
