*{
    box-sizing:border-box;
}

body{
    margin:0;
    font-family:Inter,sans-serif;
    background:#f6f7f9;
    color:#1f3552;
    overflow-y: auto;
}

.container{
    height:100vh;
    display:flex;
}

.left-panel{
    width:52%;
    padding:50px 70px;
    padding-top: 20px;
    border-right:1px solid #ececec;
}

.right-panel{
    width:48%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero{
    margin-top:20px;
}

.hero h1{
    line-height:1.1;
    font-size: 50px;
    margin-bottom:20px;
}

.hero p{
    color:#61718a;
    font-size:16px;
    line-height:1.8;
    max-width:560px;
}

.features{
    margin-top:30px;
}

.feature{
    display:flex;
    gap:15px;
    margin-bottom:35px;
}

.icon{
    width:48px;
    height:48px;
    border-radius:14px;
    background:#fff2e7;
    color:#f58a30;

    display:flex;
    align-items:center;
    justify-content:center;
}

.icon i{
    font-size:20px;
}

.feature h3{
    margin:0;
}

.feature span{
    color:#6b778d;
}


.card{
    background:white;
    width:100%;
    padding:40px;
    border-radius:30px;
    border:1px solid #ececec;
    box-shadow:0 10px 40px rgba(0,0,0,.04);
}

.steps{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:100px;
}

.step{
    width:38px;
    height:38px;
    border-radius:50%;
    border:1px solid #d7dde6;
    display:flex;
    align-items:center;
    justify-content:center;
}

.active{
    border:1px solid #1f3552;
}

.line{
    width:40px;
    height:1px;
    background:#d7dde6;
}

.card h2{
    margin-bottom:10px;
    font-size:40px;
}

.subtitle{
    color:#6f7a8d;
    margin-bottom:15px;
}

.field{
    margin-bottom:20px;
}

.field label{
    display:block;
    margin-bottom:8px;
    font-weight:500;
}

.ui-inputfield{
    width:100%;
    height:45px;
    border-radius:14px !important;
    border:1px solid #d9dee7 !important;
    box-shadow:none !important;
}

.ui-inputfield:focus{
    border:1px solid #f58a30 !important;
    box-shadow:0 0 0 4px rgba(245,138,48,.1) !important;
}

.options{
    display:flex;
    gap:10px;
}

.option{
    flex:1;
    height:48px !important;
    background:white !important;
    color:#526175 !important;
    border:1px solid #dce1e8 !important;
    border-radius:14px !important;
}

.selected{
    border:1px solid #1f3552 !important;
}

.btn-access{
    width:100%;
    height:56px !important;
    margin-top:15px !important;
    border:none !important;
    border-radius:16px !important;
    background:#1f3552 !important;
    font-weight:600 !important;
}
.ui-button{
    /*background-color:  #1f3552 !important;*/
}

@media (max-width:768px){
    body{
        overflow-y:auto;
    }
    .container{
        display:flex;
        flex-direction:column-reverse;
        min-height:auto;
        height: auto;
    }

    .card{
        max-width:none;
        width:100%;
        padding:25px;
        border-radius:24px;
    }
    .left-panel{
        width:100%;
        padding:25px;
        border:none;
    }

    .right-panel{
        width:100%;
        padding:15px;
        display:block;
    }

    .hero h1,
    .hero p{
        display:none;
    }
    .feature{
        width:100%;
    }
}