/* ============================================================
   zugang.css  –  Gestaltung fuer Anmeldung und Passwortwechsel
   ============================================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #1f2933;
    background: #eef2f6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.karte {
    background: #fff;
    width: 100%;
    max-width: 460px;
    padding: 34px 32px 30px;
    border-radius: 14px;
    border: 1px solid #d4dde6;
    box-shadow: 0 2px 10px rgba(31, 41, 51, 0.06);
}

.symbol {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    border-radius: 12px;
    background: #eef2f6;
    font-size: 1.6rem;
}

h1 {
    font-size: 1.35rem;
    text-align: center;
    margin-bottom: 6px;
}

.unter {
    text-align: center;
    color: #4a5b6d;
    font-size: 1rem;
    margin-bottom: 24px;
}

label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #3b4a59;
    margin-bottom: 6px;
}

input[type="password"],
input[type="text"] {
    display: block;
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 16px;
    font-size: 1.05rem;
    font-family: inherit;
    color: #1f2933;
    background: #f5f5f7;
    border: 1px solid #d4dde6;
    border-radius: 9px;
    outline: none;
}

input[type="password"]:focus,
input[type="text"]:focus {
    border-color: #0064c8;
    background: #fff;
}

button {
    display: block;
    width: 100%;
    padding: 13px 16px;
    font-size: 1.05rem;
    font-family: inherit;
    font-weight: 600;
    color: #fff;
    background: #0064c8;
    border: none;
    border-radius: 9px;
    cursor: pointer;
    transition: background 0.15s;
}

button:hover { background: #0052a3; }

.hinweis,
.fehler,
.erfolg {
    font-size: 0.98rem;
    padding: 12px 14px;
    border-radius: 9px;
    margin-bottom: 20px;
}

.hinweis { background: #eef2f6; border: 1px solid #d4dde6; color: #3b4a59; }
.fehler  { background: #fdecec; border: 1px solid #f2c4c4; color: #9b2222; }
.erfolg  { background: #eaf6ee; border: 1px solid #bfe0c9; color: #1f7a3d; }

.fuss {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #eef2f6;
    text-align: center;
    font-size: 0.95rem;
    color: #8a97a4;
}

.fuss a { color: #0064c8; }

code {
    display: block;
    margin-top: 8px;
    padding: 10px 12px;
    background: #1f2933;
    color: #e6eef8;
    border-radius: 8px;
    font-size: 0.82rem;
    font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
    word-break: break-all;
    user-select: all;
}
