body{

    background:#f4f6f8;
    font-family:Inter,sans-serif;
    color:#0d2d62;

}

.main-card{

    background:white;
    border-radius:28px;
    padding:24px;
    box-shadow:
    0 10px 30px rgba(0,0,0,0.04);

}

.primary-btn{

    background:#0d2d62;
    color:white;
    border-radius:18px;
    padding:14px;
    width:100%;
    border:none;
    font-weight:600;

}

.primary-btn:hover{

    opacity:0.95;

}

.slot-btn{

    border:2px solid #d9e1ea;
    background:white;
    border-radius:18px;
    padding:14px;
    font-weight:600;
    color:#0d2d62;
    transition:0.2s;

}

.slot-btn:hover{

    border-color:#008540;

}

.slot-active{

    background:#008540;
    color:white;
    border-color:#008540;

}

.input{

    width:100%;
    border:1px solid #dfe5eb;
    border-radius:18px;
    padding:14px;
    outline:none;

}

.input:focus{

    border-color:#0d2d62;

}

.label{

    font-size:14px;
    font-weight:600;
    margin-bottom:8px;
    display:block;

}