/* ======================================================
   Lease Optimaal
   style.css
====================================================== */

:root{

    --primary:#0d6efd;
    --primary-dark:#0b5ed7;
    --success:#198754;
    --light:#f6f8fb;
    --border:#dee2e6;
    --text:#212529;
    --muted:#6c757d;

}

*{
    box-sizing:border-box;
}

body{

    margin:0;
    background:var(--light);
    color:var(--text);
    font-family:Arial,Helvetica,sans-serif;

}


/* =====================================
   Landing
===================================== */

#landing{

    padding:70px 0;

}

.logo{

    max-height:70px;

}

.card{

    border:none;
    border-radius:20px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);

}

.features{

    max-width:420px;
    font-size:18px;
    line-height:2;

}


/* =====================================
   Wizard
===================================== */

#wizard{

    display:none;
    padding:60px 0;

}


/* =====================================
   Steps
===================================== */

.step{

    display:none;
    animation:fade .35s ease;

}

.step.active{

    display:block;

}

@keyframes fade{

    from{

        opacity:0;
        transform:translateY(20px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}
/* =====================================
   Choice Cards
===================================== */

.choice-card{

    display:flex;
    align-items:flex-start;
    gap:18px;

    width:100%;
    padding:22px 24px;
    margin-bottom:18px;

    border:2px solid #dee2e6;
    border-radius:16px;

    background:#fff;
    cursor:pointer;

    transition:all .2s ease;

}

.choice-card:hover{

    border-color:#0d6efd;
    box-shadow:0 8px 20px rgba(13,110,253,.08);

}

.choice-card input{

    display:none;

}

/* Rondje */

.choice-radio{

    width:22px;
    height:22px;

    border:2px solid #adb5bd;
    border-radius:50%;

    flex-shrink:0;
    margin-top:2px;

    position:relative;

    transition:.2s;

}

/* Blauw rondje */

.choice-card input:checked + .choice-radio{

    border-color:#0d6efd;

}

.choice-card input:checked + .choice-radio::after{

    content:"";

    width:10px;
    height:10px;

    border-radius:50%;
    background:#0d6efd;

    position:absolute;
    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

}

/* Tekst */

.choice-content{

    flex:1;

}

.choice-title{

    font-size:21px;
    font-weight:600;
    color:#212529;

}

.choice-subtitle{

    margin-top:4px;
    font-size:14px;
    color:#6c757d;
    line-height:1.5;

}

/* Geselecteerd */

.choice-card:has(input:checked){

    border-color:#0d6efd;
    background:#f8fbff;

}

.choice-card:has(input:checked) .choice-title{

    color:#0d6efd;

}

/* =====================================
   Progress
===================================== */

.progress{

    height:10px;
    border-radius:50px;
    background:#e9ecef;
    overflow:hidden;

}

.progress-bar{

    width:33%;
    transition:.4s ease;
    background:linear-gradient(90deg,#0d6efd,#4ea0ff);

}


/* =====================================
   Formulier
===================================== */

label{

    font-weight:600;
    margin-bottom:8px;

}

.form-control,
.form-select{

    border-radius:12px;
    min-height:50px;
    border:1px solid var(--border);

}

.form-control:focus,
.form-select:focus{

    border-color:var(--primary);
    box-shadow:0 0 0 .2rem rgba(13,110,253,.15);

}

textarea.form-control{

    min-height:120px;

}


dit vervangen?/* =====================================
   Buttons
===================================== */

.btn{

    border-radius:40px;
    padding:12px 30px;
    font-weight:600;

}

.btn-primary{

    background:var(--primary);
    border:none;

}

.btn-primary:hover{

    background:var(--primary-dark);

}

.btn-success{

    border:none;

}


/* =====================================
   Radio buttons
===================================== */

.form-check{

    padding:15px 18px;
    border:1px solid var(--border);
    border-radius:12px;
    margin-bottom:15px;
    cursor:pointer;
    transition:.25s;

}

.form-check:hover{

    background:#f7fbff;
    border-color:var(--primary);

}

.form-check-input{

    margin-top:.35rem;

}

.form-check-label{

    margin-left:10px;
    cursor:pointer;
    font-weight:500;

}

/* =====================================
   Wizard buttons
===================================== */

.wizard-buttons{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
}

.wizard-buttons .prevBtn{
    margin-right:auto;
}

.wizard-buttons .nextBtn,
.wizard-buttons .btn-success{
    margin-left:auto;
}

/* Mobiel */

@media (max-width:768px){

    .wizard-buttons{

        display:flex;
        flex-direction:column;

    }

    .wizard-buttons .nextBtn,
    .wizard-buttons .btn-success{

        order:1;
        width:100%;
        margin:0;

    }

    .wizard-buttons .prevBtn{

        order:2;
        width:100%;
        margin:0;

    }

}
/* =====================================
   RDW
===================================== */

#kentekenBlok,
#zoekBlok{

    display:none;
    margin-top:30px;

}

#rdwLoader{

    display:none;
    text-align:center;
    padding:20px;
    color:var(--primary);
    font-weight:bold;

}


/* =====================================
   Honeypot
===================================== */

#website{

    display:none !important;

}


/* =====================================
   Success
===================================== */

.success-message{

    display:none;
    text-align:center;
    padding:40px;

}

.success-message h2{

    color:var(--success);

}


/* =====================================
   Responsive
===================================== */

@media (max-width:768px){

    #landing{
        padding:30px 0;
    }

    #wizard{
        padding:20px 0;
    }

    .card{
        padding:30px 20px !important;
    }

    h1{
        font-size:2rem;
    }

    h2{
        font-size:1.5rem;
    }

    .btn{
        width:100%;
        margin-bottom:10px;
    }

}