/* =====================================================================
   HoZT back-end — aanmeldschermen in de huisstijl van de club.
   Zelfde taal als de website: Montserrat, HoZT-rood, foto met donkere
   scrim, witte kaart met ronde hoeken.
   ===================================================================== */

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

:root {
    --red: #D50000;
    --red-dark: #AA0000;
    --ink: #141414;
}

body.hozt-login {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    color: var(--ink);
    position: relative;
    background: #0d0d0d;
    -webkit-font-smoothing: antialiased;
}

/* foto + scrim, net als de hero op de site */
body.hozt-login::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../../../Hoogstraten-sprint_ReeseMedia_0-26.jpg') center / cover no-repeat;
}
body.hozt-login::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.62) 48%, rgba(213,0,0,.46) 100%);
}

.hozt-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 430px;
    background: #fff;
    border-radius: 22px;
    padding: 44px 40px 38px;
    box-shadow: 0 26px 64px rgba(0, 0, 0, .38);
}

.hozt-logo {
    display: block;
    height: 58px;
    width: auto;
    margin: 0 auto 24px;
}

.hozt-card h1 {
    font-size: 25px;
    font-weight: 800;
    text-align: center;
    letter-spacing: -.5px;
    line-height: 1.15;
}

.hozt-sub {
    text-align: center;
    color: #7a7a7a;
    font-size: 14px;
    font-weight: 500;
    margin: 9px 0 28px;
    line-height: 1.55;
}

/* --- velden --- */
.hozt-field { margin-bottom: 16px; }
.hozt-field label {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 7px;
}
.hozt-field input {
    width: 100%;
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    padding: 13px 15px;
    border: 1.5px solid #e0e0e0;
    border-radius: 11px;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}
.hozt-field input:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(213, 0, 0, .12);
}

/* --- onthouden --- */
.hozt-check {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 2px 0 20px;
    font-size: 13.5px;
    font-weight: 500;
    color: #555;
    cursor: pointer;
}
.hozt-check input {
    width: 17px;
    height: 17px;
    accent-color: var(--red);
    cursor: pointer;
}

/* --- knop --- */
.hozt-btn {
    width: 100%;
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    background: var(--red);
    border: none;
    border-radius: 200px;
    padding: 15px;
    cursor: pointer;
    transition: background .2s, transform .15s;
}
.hozt-btn:hover { background: var(--red-dark); }
.hozt-btn:active { transform: translateY(1px); }

/* --- meldingen --- */
.hozt-melding {
    font-size: 13.5px;
    font-weight: 500;
    padding: 12px 14px;
    border-radius: 11px;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.5;
}
.hozt-melding--fout {
    background: #fdecea;
    color: #b3261e;
    border: 1px solid #f5c6c2;
}
.hozt-melding--ok {
    background: #e9f7ec;
    color: #1e7a32;
    border: 1px solid #bfe6c8;
}

/* --- links onderaan --- */
.hozt-links {
    margin-top: 20px;
    text-align: center;
    font-size: 13.5px;
    font-weight: 500;
}
.hozt-links a {
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
}
.hozt-links a:hover { text-decoration: underline; }

.hozt-foot {
    text-align: center;
    margin-top: 26px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: #b0b0b0;
}

.hozt-hint {
    font-size: 12px;
    color: #8b8b8b;
    margin: -6px 0 16px;
}

@media (max-width: 480px) {
    .hozt-card { padding: 34px 24px 30px; border-radius: 18px; }
    .hozt-logo { height: 48px; }
}
