/* PHV BW Landesfarben-Design (Schwarz & Gelb) */
:root {
    --phv-yellow: #ffcc00; /* Das klassische Goldgelb BaWü */
    --phv-dark: #000000;
    --phv-bg: #ffffff;
}

body {
    background-color: #f4f4f4;
    font-family: Arial, Helvetica, sans-serif !important;
    color: var(--phv-dark);
}

/* Die Anmelde-Box */
.container {
    max-width: 450px;
    background: var(--phv-bg);
    padding: 40px;
    border-radius: 0;
    border: 2px solid var(--phv-dark); /* Schwarzer Rahmen */
    box-shadow: 10px 10px 0px var(--phv-yellow); /* Gelber Schatten-Effekt */
}

/* Überschriften: Schwarz und Fett */
h1, h2 {
    color: var(--phv-dark) !important;
    font-weight: 900;
    text-transform: uppercase;
    border-bottom: 5px solid var(--phv-yellow); /* Gelber Akzentstrich */
    display: inline-block;
    margin-bottom: 30px;
}

/* Buttons: Gelber Hintergrund mit schwarzer Schrift (sehr auffällig) */
button, .btn, input[type="submit"] {
    background-color: var(--phv-yellow) !important;
    color: var(--phv-dark) !important;
    border-radius: 0 !important;
    text-transform: uppercase;
    font-weight: bold;
    border: 2px solid var(--phv-dark);
    padding: 15px 25px !important;
    cursor: pointer;
    transition: all 0.2s ease;
}

button:hover {
    background-color: var(--phv-dark) !important;
    color: var(--phv-yellow) !important;
}

/* Formularfelder */
input[type="text"], input[type="email"] {
    border: 1px solid var(--phv-dark) !important;
    border-radius: 0 !important;
}