/* Sperrbild (Vorschau-Schutz vor der Veroeffentlichung, Planungssitzung
 * 26.09.2026). Keine Sicherheitsfunktion -- die leistet weiter Authelia
 * (deploy/compose/authelia/). Nur lokale, selbst gehostete Regeln: keine
 * externen Schriften oder Ressourcen (CSP dieser Seite: default-src 'none').
 * Systemschriftarten statt einer eigenen Web-Schrift, damit kein weiteres
 * Asset noetig ist. Farben aus design/VERTRAG.md Abschnitt 7
 * (Akzent-Skala 700/900, Neutral-Skala 100).
 */

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 1.5rem;
  background: #1d2d3d;
  color: #f2f2f3;
  font-family: ui-monospace, "Cascadia Mono", "Segoe UI Mono", Consolas, "Liberation Mono", Menlo, monospace;
}

.karte {
  width: 100%;
  max-width: 21rem;
  text-align: center;
}

.karte__titel {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.karte__hinweis {
  margin: 0 0 1.5rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #9ebbd8;
}

.karte__fehler {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  color: #ff8a80;
}

form {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

input[type="password"] {
  width: 100%;
  padding: 0.75rem 0.875rem;
  font: inherit;
  font-size: 0.9375rem;
  color: #f2f2f3;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid #416180;
  border-radius: 6px;
  outline: none;
}

input[type="password"]:focus {
  border-color: #94bce3;
}

button {
  width: 100%;
  padding: 0.75rem 0.875rem;
  font: inherit;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  color: #1d2d3d;
  background: #d6ebff;
  border: 0;
  border-radius: 6px;
}

button:hover {
  background: #b5d9fd;
}

button:focus-visible,
input[type="password"]:focus-visible {
  outline: 2px solid #f2f2f3;
  outline-offset: 2px;
}
