/*
 * FAYAT FONDATIONS — Pages d'authentification
 * Style cohérent avec shell-ui
 */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --ff-bleu: #0055a0;
  --ff-bleu-h: #004f9e;
  --ff-bleu-l: #ebf2fb;
  --ff-jaune: #f5a800;
  --ff-jaune-h: #e09700;
  --ff-jaune-l: #fff8e8;
  --ff-blanc: #ffffff;
  --ff-fond: #f3f5f8;
  --ff-texte: #1c2b3a;
  --ff-texte-s: #607080;
  --ff-texte-h: #a0aebb;
  --ff-bordure: #d4dce8;
  --ff-bordure-l: #e8edf4;
  --ff-surface: #f8fafb;
  --ff-rouge: #c9302c;
  --ff-rouge-l: #fdecea;
  --ff-vert: #1e7a4a;
  --ff-vert-l: #e6f4ed;
  --ff-rayon: 5px;
  --ff-ombre: 0 2px 8px rgba(0, 30, 80, 0.08), 0 4px 16px rgba(0, 30, 80, 0.06);
  --ff-ombre-m: 0 8px 24px rgba(0, 30, 80, 0.12);
  --ff-muted: #6b7280;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
button {
  cursor: pointer;
  font-family: "Inter", sans-serif;
}
html {
  height: 100%;
}
body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(135deg, var(--ff-bleu) 0%, #003d7a 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  height: 100vh;
  color: var(--ff-texte);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding: 20px;
}

.auth-header {
  text-align: center;
  margin-bottom: 32px;
}

.auth-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--ff-bleu);
  color: var(--ff-jaune);
  border-radius: 12px;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 85, 160, 0.2);
}

.auth-title {
  color: var(--ff-bleu);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.auth-subtitle {
  color: var(--ff-texte-s);
  font-size: 0.9rem;
  font-weight: 500;
}
.divider {
  width: 100%;
  height: 1px;
  background-color: var(--ff-bordure-l);
}

.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-4 {
  gap: 1rem;
}
.grid {
  display: grid;
}
.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.w-full {
  width: 100%;
}
.p-2 {
  padding: 0.5rem;
}
.p-4 {
  padding: 1rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.items-start {
  align-items: flex-start;
}
