/* ====== GENERAL ====== */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #0d0d0d;
    color: #fff;
}

.login-hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: url('/path/naar/achtergrond.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.login-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    z-index: 1;
}

.login-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    max-width: 1100px;
    gap: 40px;
}

/* ====== LEFT INFO SECTION ====== */
.login-info-section {
    flex: 1;
}

.login-info-section h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.login-badge {
    background: #00c864;
    display: inline-block;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffffff;
}

/* ====== FORM SECTION ====== */
.login-form-section {
    flex: 1;
    background: rgba(0,0,0,0.55);
    padding: 25px;
    border-radius: 10px;
    backdrop-filter: blur(4px);
}

.login-form-tabs {
    display: flex;
    margin-bottom: 20px;
}

.login-tab-btn {
    flex: 1;
    padding: 12px;
    background: #222;
    border: none;
    color: #aaa;
    cursor: pointer;
    font-size: 16px;
}

.login-tab-btn.active {
    background: #00c864;
    color: #000;
    font-weight: bold;
}

/* ====== INPUTS ====== */
.form-control {
    width: 100%;
    height: 55px;                 /* grotere hoogte */
    padding: 0 18px;              /* meer ruimte */
    margin-bottom: 15px;
    border-radius: 6px;
    border: none;
    background: #1a1a1a;
    color: #fff;
    font-size: 18px;              /* grotere tekst */
    box-sizing: border-box;
}

/* ====== SELECT FIX (GENDER) ====== */
select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    height: 55px !important;
    padding: 0 20px !important;
    font-size: 18px !important;
    line-height: 55px !important;

    background-color: #1a1a1a !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;

    overflow: visible !important;
    white-space: normal !important;
    text-overflow: initial !important;
}

select.form-control option {
    color: #000;
}

select.form-control option[disabled] {
    color: #bbb !important;
}

/* ====== BUTTON ====== */
.btn-login {
    width: 100%;
    padding: 14px;
    background: #00c864;
    border: none;
    border-radius: 6px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    color: #000;
}

.btn-login:hover {
    background: #00e67a;
}

/* ====== RESPONSIVE ====== */

/* Tablets */
@media (max-width: 992px) {
    .login-content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .login-info-section h1 {
        font-size: 34px;
    }
}

/* Mobiel */
@media (max-width: 600px) {
    .login-info-section h1 {
        font-size: 28px;
    }

    .login-form-section {
        padding: 20px;
    }

    .login-badge {
        font-size: 14px;
    }

    .login-content-wrapper {
        gap: 20px;
    }

    /* Select Gender nog groter op mobiel */
    select.form-control {
        height: 60px !important;
        font-size: 20px !important;
        padding-left: 22px !important;
        line-height: 60px !important;
    }

    .form-control {
        height: 60px;
        font-size: 20px;
    }
}
