/* Hasenbau — Registrierungs- und Anmeldebereich
   Farben nach BlueBeret-Markenvorgabe: #011A3D (dunkelblau), #34C3F0 (cyan). */

*, *::before, *::after { box-sizing: border-box; }

:root {
    --grund:        #011226;
    --karte:        #011A3D;
    --karte-rand:   #0a3466;
    --akzent:       #34C3F0;
    --text:         #e0edf5;
    --text-leise:   #9fb8cc;
    --feld:         #02234f;
    --fehler:       #ff4b55;
    --erfolg:       #34d399;
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    background:
        radial-gradient(1100px 600px at 50% -10%, #02234f 0%, transparent 60%),
        var(--grund);
    color: var(--text);
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

.huelle {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    gap: 20px;
}

.karte {
    width: 100%;
    max-width: 420px;
    background: var(--karte);
    border: 1px solid var(--karte-rand);
    border-radius: 16px;
    padding: 36px 32px 32px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .45);
}

/* --------------------------------------------------------------- Kopfbereich */

.kopf { text-align: center; }

.logo {
    width: 76px;
    height: 76px;
    object-fit: contain;
    border-radius: 18px;
}

.marke {
    margin: 12px 0 2px;
    font-size: 27px;
    font-weight: 700;
    letter-spacing: .4px;
    color: var(--akzent);
}

.unterzeile {
    margin: 0;
    font-size: 13px;
    color: var(--text-leise);
}

.trenner {
    height: 1px;
    margin: 22px 0 20px;
    background: linear-gradient(90deg, transparent, var(--karte-rand), transparent);
}

/* ------------------------------------------------------------------- Inhalte */

.titel {
    margin: 0 0 6px;
    font-size: 21px;
    font-weight: 600;
    text-align: center;
}

.titel-fehler { color: var(--fehler); }

.beschreibung {
    margin: 0 0 22px;
    font-size: 14px;
    color: var(--text-leise);
    text-align: center;
}

.beschreibung.gross {
    font-size: 15px;
    color: var(--text);
}

/* ------------------------------------------------------------------ Formular */

.formular { display: flex; flex-direction: column; gap: 16px; }

.feld { display: flex; flex-direction: column; gap: 6px; }

label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-leise);
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px 14px;
    background: var(--feld);
    border: 1px solid var(--karte-rand);
    border-radius: 9px;
    color: var(--text);
    font-size: 15px;
    font-family: inherit;
}

input:focus {
    outline: none;
    border-color: var(--akzent);
    box-shadow: 0 0 0 3px rgba(52, 195, 240, .18);
}

.tipp {
    font-size: 12px;
    color: var(--text-leise);
}

.knopf {
    display: inline-block;
    width: 100%;
    margin-top: 6px;
    padding: 13px 20px;
    background: var(--akzent);
    color: #011A3D;
    border: none;
    border-radius: 9px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.knopf:hover { background: #5bd1f5; }

.knopf-zweit {
    background: transparent;
    color: var(--akzent);
    border: 1px solid var(--akzent);
}

.knopf-zweit:hover { background: rgba(52, 195, 240, .1); }

.weiter {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 22px 0 4px;
}

/* Honigtopf gegen Bots: fuer Menschen unsichtbar, aber im Quelltext da. */
.honigtopf {
    position: absolute;
    left: -10000px;
    top: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ------------------------------------------------------------------ Hinweise */

.hinweis {
    margin: 0 0 16px;
    padding: 12px 14px;
    border-radius: 9px;
    font-size: 14px;
    border: 1px solid;
}

.hinweis-fehler {
    background: rgba(255, 75, 85, .12);
    border-color: rgba(255, 75, 85, .45);
    color: #ffb3b7;
}

.hinweis-erfolg {
    background: rgba(52, 211, 153, .12);
    border-color: rgba(52, 211, 153, .45);
    color: #8ce8c4;
}

.wechsel {
    margin: 20px 0 0;
    font-size: 14px;
    text-align: center;
    color: var(--text-leise);
}

.wechsel.klein { margin-top: 8px; font-size: 13px; }

a { color: var(--akzent); text-decoration: none; }
a:hover { text-decoration: underline; }

.fuss {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    font-size: 12px;
    color: var(--text-leise);
}

@media (max-width: 480px) {
    .karte { padding: 28px 22px 26px; }
    .marke { font-size: 24px; }
}
