/* ==========================================
   NEXTGEN VIRTUAL ACADEMY
   SELECTION CONTROLS LAB
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#EEF3FF;
}

header{
    background:#1E3A8A;
    color:white;
    text-align:center;
    padding:20px;
}

header h1{
    font-size:34px;
}

header p{
    margin-top:8px;
}

.container{
    width:90%;
    max-width:1000px;
    margin:30px auto;
    background:white;
    padding:35px;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.container h2{
    text-align:center;
    color:#1E3A8A;
    margin-bottom:30px;
}

.section{
    margin-bottom:25px;
}

.section label{
    display:block;
    font-weight:600;
    color:#374151;
    margin-bottom:10px;
}

.options{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
}

.options label{
    font-weight:400;
}

select,
input[type="text"]{

    width:100%;
    padding:12px;
    border:1px solid #D1D5DB;
    border-radius:8px;
    outline:none;
    font-size:15px;

}

select:focus,
input[type="text"]:focus{

    border-color:#2563EB;
    box-shadow:0 0 6px rgba(37,99,235,.25);

}

.buttons{

    display:flex;
    gap:20px;
    margin-top:35px;

}

.buttons button{

    flex:1;
    padding:14px;
    border:none;
    border-radius:8px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;

}

#submitButton{

    background:#2563EB;
    color:white;

}

#submitButton:hover{

    background:#1E40AF;

}

#resetButton{

    background:#E5E7EB;

}

#resetButton:hover{

    background:#D1D5DB;

}

@media(max-width:768px){

    .container{

        width:95%;
        padding:20px;

    }

    .options{

        flex-direction:column;
        gap:10px;

    }

    .buttons{

        flex-direction:column;

    }

}