:root {
  /* === Design tokens étendus (v3.0.2) === */
  /* Spacing */
  --space-0: 0;
  --space-1: 0.4rem;
  --space-2: 0.8rem;
  --space-3: 1.2rem;
  --space-4: 1.6rem;
  --space-5: 2rem;
  --space-6: 2.4rem;
  --space-8: 3.2rem;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-xl: 1rem;

  /* Shadows */
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 6px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 20px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 12px 28px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --ease-fast: 0.15s;
  --ease: 0.2s;
  --ease-slow: 0.3s;

  /* Breakpoints */
  --bp-desktop: 75em;
  --bp-tablet: 59em;
  --bp-stablet: 44em;
  --bp-phone: 34em;

  --grey-800: #414141;
  --bleu-apsaq-50: #e6f9fd;
  --bleu-apsaq-hover: #73d7ea;
  --bleu-apsaq-hover-lite: #e9fafd;
  /* Identité APSAQ */
  --bleu-apsaq: #00b7e8;
  --bleu-apsaq-alt: #20bfdc;

  /* Couleurs complémentaires */
  --jaune-apsaq: #ffd43b;
  --rouge-apsaq: #e03131;
  --vert-apsaq: #37b24d;

  /* Gris & neutres */
  --grey-900: #1a1a1a;
  --grey-700: #555;
  --grey-500: #8e8e8e;
  --grey-300: #d9d9d9;
  --grey-100: #f5f5f5;
  --white: #fff;
  --black: #000;
}

.center,
h1,
h2,
h3,
h4,
p {
  text-align: center;
}

.red,
h1 {
  font-weight: 600;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  border: none;
}
.gen-container {
  padding-bottom: 2.4rem;
}
.left {
  text-align: left;
}
.red {
  color: red;
}
.bleuapsaq {
  color: var(--bleu-apsaq-alt) !important;
}
p {
  line-height: 2;
  font-size: 1.2rem;
}
h1,
h2,
h3,
h4 {
  padding: 0.8rem 0;
  color: var(--bleu-apsaq);
}
h1 {
  font-size: 3.2rem;
}
.error_message,
h2 {
  font-weight: 500;
}
h2 {
  font-size: 2.4rem;
}
h3 {
  font-weight: 400;
  font-size: 1.8rem;
}
h4 {
  font-size: 1.4rem;
  font-weight: 700;
}
.btn,
.btn:link,
.btn:visited {
  display: inline-block;
  font-size: 1rem;
  padding: 0.8rem 1.6rem;
  margin: 1.6rem 0;
  border-radius: var(--radius-md);
  text-decoration: none;
  text-align: center;
  background-color: var(--bleu-apsaq-alt);
  color: var(--white);
  width: auto;
  cursor: pointer;
}
.btn:active,
.btn:hover {
  background-color: var(--bleu-apsaq-hover);
  color: var(--black);
  transition: background-color var(--ease-slow);
}
a:link,
a:visited {
  color: var(--grey-700);
  text-decoration: none;
  cursor: pointer;
}
a:active,
a:hover {
  color: var(--bleu-apsaq-hover);
}

.btn--center {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
