:root {
    --grund: #0e1218;
    --flaeche: #171d27;
    --rand: #2a3442;
    --text: #c9d4e4;
    --leise: #7c8ba0;
    --akzent: #57c7a3;
    --fehler: #d86a6a;
}
* { box-sizing: border-box; }
html, body {
    margin: 0; min-height: 100%;
    background: var(--grund); color: var(--text);
    font: 15px/1.6 system-ui, -apple-system, "Segoe UI", sans-serif;
}
body { display: grid; place-items: center; padding: 24px; min-height: 100vh; }
main {
    width: 100%; max-width: 380px;
    padding: 28px;
    background: var(--flaeche);
    border: 1px solid var(--rand);
    border-radius: 14px;
}
h1 { margin: 0 0 6px; font-size: 20px; }
.hinweis { margin: 0 0 22px; color: var(--leise); font-size: 14px; }
.hinweis b { color: var(--text); font-weight: 600; }
label {
    display: block; margin-bottom: 6px;
    font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--leise);
}
input {
    width: 100%; padding: 12px 14px; margin-bottom: 12px;
    background: var(--grund); color: var(--text);
    border: 1px solid var(--rand); border-radius: 8px;
    font: 600 22px/1 ui-monospace, "SF Mono", Menlo, monospace;
    letter-spacing: .24em; text-align: center; text-transform: uppercase;
}
input:focus { outline: 2px solid var(--akzent); outline-offset: 1px; }
button {
    width: 100%; padding: 12px;
    background: var(--akzent); color: #06120d;
    border: 0; border-radius: 8px;
    font: 600 15px/1 inherit; cursor: pointer;
}
button:hover { filter: brightness(1.08); }
button:disabled { opacity: .5; cursor: default; }
#meldung { margin: 14px 0 0; min-height: 1.6em; font-size: 14px; }
#meldung.fehler { color: var(--fehler); }
#meldung.gut { color: var(--akzent); }
.fussnote { margin: 22px 0 0; color: var(--leise); font-size: 12.5px; }
