/* Eigenstaendiges, kleines Stylesheet fuer die Login-Seite - haengt bewusst
   nicht an stil.css, damit diese eine Seite auch fuer sich funktioniert. */

:root {
  --grund: #0A111E;
  --panel: #101B2E;
  --kante: rgba(142, 168, 205, 0.16);
  --text: #E9F0FA;
  --leise: #8FA5C4;
  --signal: #F0A23C;
  --fehler: #F0716B;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--grund);
  color: var(--text);
  font: 15px/1.5 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.karte {
  width: 100%;
  max-width: 360px;
  background: var(--panel);
  border: 1px solid var(--kante);
  border-radius: 14px;
  padding: 32px 28px;
}

h1 {
  margin: 0 0 6px;
  font-size: 20px;
}

.hinweis {
  margin: 0 0 22px;
  color: var(--leise);
  font-size: 14px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--leise);
}

input {
  width: 100%;
  padding: 11px 12px;
  font: inherit;
  color: var(--text);
  background: var(--grund);
  border: 1px solid var(--kante);
  border-radius: 8px;
  margin-bottom: 16px;
}

input:focus {
  outline: 2px solid var(--signal);
  outline-offset: -1px;
}

button {
  width: 100%;
  padding: 12px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  color: #0A111E;
  background: var(--signal);
  border: none;
  border-radius: 8px;
}

button:hover { filter: brightness(1.05); }

.fehler {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--fehler);
  font-size: 14px;
}
