/* Module auth — page de connexion (carte centrée sur fond de page DS). */

.auth-page {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-page);
  padding: 24px;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: var(--surface-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-shell);
  padding: 44px 38px 34px;
  text-align: center;
  animation: fadeUp 0.35s ease;
}

.auth-card__logo {
  width: 158px;
  height: auto;
  margin-bottom: 28px;
}

.auth-card__title {
  font-size: var(--text-2xl);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-tight);
  margin-bottom: 8px;
}

.auth-card__subtitle {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: 26px;
}

.auth-card__button {
  gap: 11px;
}

.auth-card__footer {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin: 22px 0 0;
}
