@font-face {
  font-family: "Bebas Neue";
  src: url("/fonts/bebas-neue-latin.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+2122;
}
@font-face {
  font-family: "Bebas Neue";
  src: url("/fonts/bebas-neue-latin-ext.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0100-024F, U+1E00-1EFF, U+2020, U+20A0-20AB;
}
@font-face {
  font-family: "Manrope";
  src: url("/fonts/manrope-var-latin.woff2") format("woff2");
  font-weight: 200 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+2122;
}
@font-face {
  font-family: "Manrope";
  src: url("/fonts/manrope-var-latin-ext.woff2") format("woff2");
  font-weight: 200 800;
  font-display: swap;
  unicode-range: U+0100-024F, U+1E00-1EFF, U+2020, U+20A0-20AB;
}

:root {
  /* Huisstijl 2026-09-26 (licht als standaard), zie theme.css in fitcoach-admin. */
  --color-bg: oklch(97% 0.004 260);
  --color-card: oklch(100% 0 0);
  --color-line: oklch(90% 0.006 260);
  --color-text: oklch(22% 0.014 260);
  --color-muted: oklch(45% 0.014 260);
  --color-strength: oklch(58% 0.19 300);
  --color-strength-hover: oklch(52% 0.19 300);
  --shadow-kaart: 0 1px 2px oklch(20% 0.014 260 / 0.04), 0 1px 8px oklch(20% 0.014 260 / 0.05);
  --radius-kaart: 0.375rem;
  --radius-knop: 0.25rem;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  height: 100%;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: "Manrope", system-ui, sans-serif;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

main {
  width: 100%;
  max-width: 30rem;
  background: var(--color-card);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-kaart);
  box-shadow: var(--shadow-kaart);
  padding: 40px 32px;
  text-align: center;
}

h1 {
  font-family: "Bebas Neue", system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-size: clamp(2rem, 8vw, 2.75rem);
  margin: 0 0 4px;
  color: var(--color-text);
}

.pill {
  display: inline-block;
  margin: 0 0 20px;
  padding: 4px 14px;
  border-radius: 999px;
  background: oklch(94% 0.03 300);
  color: var(--color-strength-hover);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

p {
  margin: 0 0 28px;
  color: var(--color-muted);
  line-height: 1.5;
  font-size: 0.98rem;
}

.login {
  display: inline-block;
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--radius-knop);
  background: var(--color-strength);
  color: oklch(100% 0 0);
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.15s ease;
}

.login:hover, .login:focus-visible {
  background: var(--color-strength-hover);
}

.login:focus-visible {
  outline: 2px solid var(--color-strength);
  outline-offset: 2px;
}

footer {
  margin-top: 24px;
  color: var(--color-muted);
  font-size: 0.8rem;
}
