*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


body{
    font-family:'Inter',sans-serif;
    background:#080d15;
    color:white;
    overflow-x:hidden;
}



.page{

    min-height:100vh;

    display:grid;

    grid-template-columns:0.9fr 1.1fr;

    gap:60px;

    padding:60px;

    max-width:1600px;

    margin:auto;

}





/* =====================
        LEFT SIDE
===================== */


.company-info{

    padding:20px 10px;

}



.logo{

    width:140px;

    margin-bottom:65px;

}



.company-info h1{

    font-size:54px;

    line-height:1.08;

    font-weight:800;

    letter-spacing:-1px;

    margin-bottom:28px;

}



.company-description{

    max-width:550px;

    font-size:17px;

    line-height:1.7;

    color:#cbd5e1;

    margin-bottom:45px;

}






/* FEATURES */


.feature{

    display:flex;

    align-items:center;

    gap:22px;

    max-width:560px;

    background:#151b24;

    border-left:4px solid #c9a45c;

    padding:22px;

    border-radius:14px;

    margin-bottom:20px;

    transition:.3s;

}



.feature:hover{

    transform:translateX(5px);

}



.feature-icon{

    width:70px;

    height:70px;

    object-fit:contain;

    flex-shrink:0;

}



.feature h3{

    color:#c9a45c;

    font-size:15px;

    letter-spacing:1.2px;

    margin-bottom:10px;

}



.feature p{

    color:#d1d5db;

    font-size:14px;

    line-height:1.6;

}








/* =====================
        FORM
===================== */


.application-card{

    background:#fff;

    color:#172033;

    border-radius:28px;

    padding:55px;

    box-shadow:0 25px 70px rgba(0,0,0,.35);

}



.application-card h2{

    font-size:42px;

    margin-bottom:15px;

}



.card-text{

    color:#667085;

    line-height:1.6;

    margin-bottom:45px;

}






.form-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:0 25px;

}



.form-group{

    display:flex;

    flex-direction:column;

    margin-bottom:24px;

}



label{

    font-size:14px;

    font-weight:600;

    color:#344054;

    margin-bottom:9px;

}




input,
textarea{

    width:100%;

    height:54px;

    padding:0 16px;

    border-radius:10px;

    border:1px solid #d0d5dd;

    font-family:'Inter';

    font-size:15px;

}



textarea{

    height:130px;

    padding:15px;

}




input:focus,
textarea:focus{

    outline:none;

    border-color:#c9a45c;

}





.radio-group{

    display:flex;

    gap:35px;

}



.radio-group label{

    display:flex;

    align-items:center;

    gap:8px;

}



.radio-group input{

    width:auto;

    height:auto;

}



input[type=file]{

    height:auto;

    padding:12px;

}




.checkbox{

    display:flex;

    gap:10px;

    margin:25px 0;

}



.checkbox input{

    width:auto;

}




.submit-btn{

    width:100%;

    height:60px;

    background:#111827;

    color:#c9a45c;

    border:none;

    border-radius:12px;

    font-size:18px;

    font-weight:700;

}







footer{

    text-align:center;

    padding:35px;

    color:#94a3b8;

}










/* =========================
        TABLET
========================= */


@media(max-width:1200px){


.page{

    grid-template-columns:1fr;

    padding:40px;

}


.company-info{

    max-width:800px;

}


}









/* =========================
        MOBILE
========================= */


@media(max-width:700px){



body{

    background:#080d15;

}





.page{


    display:flex;

    flex-direction:column;


    padding:20px 15px;


    gap:35px;


}





.company-info{


    padding:10px;


}





.logo{


    width:95px;


    margin-bottom:35px;


}






.company-info h1{


    font-size:34px;


    line-height:1.15;


    letter-spacing:-0.5px;


    margin-bottom:20px;


}






.company-description{


    font-size:16px;


    line-height:1.6;


    margin-bottom:30px;


}








.feature{


    width:100%;


    padding:18px;


    gap:15px;


    flex-direction:row;


    align-items:center;


    margin-bottom:15px;


}







.feature-icon{


    width:55px;


    height:55px;


}







.feature h3{


    font-size:12px;


    letter-spacing:1px;


}





.feature p{


    font-size:13px;


}









.application-card{


    width:100%;


    padding:25px 18px;


    border-radius:20px;


}





.application-card h2{


    font-size:30px;


}





.card-text{


    font-size:14px;


    margin-bottom:30px;


}





.form-grid{


    grid-template-columns:1fr;


}





input,
textarea{


    height:52px;


    font-size:16px;


}





textarea{


    height:120px;


}






.radio-group{


    display:flex;


    flex-wrap:wrap;


    gap:15px;


}





.submit-btn{


    height:55px;


    font-size:16px;


}





footer{


    font-size:12px;


    padding:25px 15px;


}




}
.logo{
    width:95px;
    margin-bottom:20px;
}
.company-info h1{

    font-size:32px;

    line-height:1.15;

    max-width:330px;

}
.page{

    padding:15px;

}
.company-description{

    max-width:340px;

}
@media(max-width:700px){

    .company-info{
        padding:0;
    }


    .logo{
        width:90px;
        margin-bottom:25px;
    }


    .company-info h1{

        font-size:32px;

        line-height:1.15;

        margin-top:0;

        margin-bottom:20px;

    }


    .company-description{

        font-size:16px;

        line-height:1.6;

        margin-bottom:25px;

    }


    .page{

        padding:25px 15px;

        gap:25px;

    }

}