/* Bewusst schlank gehalten: ein Ausgangspunkt, kein fertiges Design.
   Die eigene Session entscheidet ueber die Gestaltung. */
:root { color-scheme: light dark; --rand: #d9d9de; --gedaempft: #6b6b76; }
@media (prefers-color-scheme: dark) { :root { --rand: #33333a; --gedaempft: #9a9aa5; } }

* { box-sizing: border-box; }
body {
  margin: 0;
  font: 16px/1.6 system-ui, -apple-system, "Segoe UI", sans-serif;
}
.kopf {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .75rem 1.25rem; border-bottom: 1px solid var(--rand);
}
.marke { font-weight: 600; text-decoration: none; color: inherit; }
.kopf form { display: flex; align-items: center; gap: .75rem; margin: 0; }
.wer { color: var(--gedaempft); font-size: .9rem; }
main { max-width: 60rem; margin-inline: auto; padding: 1.5rem 1.25rem; }
h1 { font-size: 1.4rem; font-weight: 600; margin: 0 0 1rem; }
.schmal { max-width: 22rem; display: grid; gap: 1rem; }
label { display: grid; gap: .3rem; font-size: .9rem; }
input, button {
  font: inherit; padding: .5rem .7rem;
  border: 1px solid var(--rand); border-radius: 6px; background: transparent; color: inherit;
}
button { cursor: pointer; }
.meldung { padding: .6rem .9rem; border: 1px solid var(--rand); border-radius: 6px; }
.meldung.fehler { border-color: #c4443c; }
.hinweis { color: var(--gedaempft); }
