/* ============================================================
   styles-auth.css — Styles communs aux pages auth et espace élève
   ============================================================ */

/* Auth layout */
.auth-main {
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 16px;
  background: var(--c-bg-alt, #f4f6fb);
}

.auth-card {
  width: 100%;
  max-width: 480px;
  padding: 40px;
}

.auth-title {
  margin: 0 0 8px;
  font-size: 22px;
  color: var(--c-heading, #0d2f76);
}

.auth-sub {
  margin: 0 0 24px;
  color: var(--c-text-muted, #6b7280);
  font-size: 14px;
  line-height: 1.6;
}

.auth-switch {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  color: var(--c-text-muted, #6b7280);
}

.auth-switch a {
  color: var(--c-accent, #0d2f76);
  text-decoration: underline;
}

/* Badge statuts réservations */
.badge-warning {
  background: #fef3c7;
  color: #92400e;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.badge-success {
  background: #d1fae5;
  color: #065f46;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.badge-error {
  background: #fee2e2;
  color: #991b1b;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

/* Honeypot */
.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
