/* 1. Algemeen en container reset */
body {
    font-family: "Montserrat", sans-serif;
    background-color: #f4f7fa;
    margin: 0;
}

.container-fluid {
    padding: 0; /* geen witrand meer */
}

.min-vh-100 {
    min-height: 100vh;
}

/* 2. Linkerpaneel: gradient, logo & content */
.left-pane {
    background: linear-gradient(135deg, #00295A 0%, #00467F 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
}

.brand-wrapper {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
}

.logo {
    max-width: 180px;
}

h2 {
    font-weight: 400;
    font-size: 2rem;
}

.info h3 {
    font-weight: 400;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.info p {
    font-size: 1rem;
    text-align: center;
    padding-bottom: 10px;
}

/* 3. Login‑card binnen linker paneel */
.login-form-wrapper {
    width: 100%;
}

.login-card {
    width: 100%;
    max-width: 500px;
    border: none;
    border-radius: 0.75rem;
    overflow: hidden;
}

.login-card .card-body {
    padding: 3rem;
}

/* form controls en knop */
.form-control {
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    background-color: #e2eff8 !important;
    border: 1px solid #e2eff8 !important;
    height: 40px;
}

.form-label {
    font-weight: 400;
    color: #00295A;
}

.form-control:focus {
    border-color: #00295A;
    box-shadow: 0 0 0 0.2rem rgba(0, 41, 90, 0.25);
}

.btn-login {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px !important;
    background-color: #002856 !important;
    color: #ffffff !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    padding: 0.5rem 1rem;
    text-decoration: none;
}

.btn-login:hover,
.btn-login:focus {
    background-color: #001A3D;
    border-color: #001A3D;
}

.forgot-password {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #fff; /* wit op de donkere achtergrond */
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* 4. Rechterpaneel puur wit */
.right-pane {
    background-color: #fff;
    display: flex; /* maak flexbox */
    justify-content: center; /* horizontaal centreren */
    align-items: center; /* verticaal centreren */
}

/* Afbeelding maximaal 80% van de breedte, behoud ratio */
.right-pane .illustration {
    max-width: 60%;
    height: auto;
}

/* 5. Optioneel: op mobiel alleen linkerpaneel tonen */
@media (max-width: 767.98px) {
    .right-pane {
        display: none;
    }

    .left-pane {
        padding: 2rem 1rem;
    }
}