.frm_hdr{
    background-image: linear-gradient(to right top, #0056df, #0067e3, #0076e4, #0084e2, #0e91df);
    position: fixed;
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: -120px;
}

.frm_pg_tl{
    width: 100%;
    text-align: center;
    font-size: 30px;
    color: white;
    font-weight: 600;
    margin-bottom: 12px;
}

.frm_pg_nav_btn{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 5px;
}

.frm_pnb{
    background-color: #358CBC;
    color: white;
    border-radius: 100%;
    height: 25px;
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;   
}

.frm_pnb_ld{
    background-color: white;
    height: 3px;
    width: 20px;
    border-radius: 3px;
}

.frm_bxs_mc{
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.frm_box{
    background-color: white;
    border: 1px solid rgb(228, 228, 228);
    max-width: 500px;
    width: 100%;
    padding: 20px 20px 30px;
    margin-top: 20px;
    border-radius: 10px;
}

.fl_lbl{
    border-bottom: 1px solid #2420fa;
    margin-bottom: 12px;
    padding: 0 10px;
    color: #2420fa;
    font-size: 20px;
    text-align: center;
}
.frm_ipt_con{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.frm_ipt_txt{
    height: 40px;
    width: 100%;
    border: 1px solid rgb(148, 148, 148);
    outline: none;
    padding: 0 10px;
    border-radius: 5px;
    font-size: 17px;
    background-color: transparent;
    z-index: 2;
}

.frm_ipt_txt:focus{
    border: 2px solid rgb(172, 172, 255);
}

.frm_ipt_slt{
    height: 42px;
    width: 100%;
    border: 1px solid rgb(148, 148, 148);
    outline: none;
    padding: 0 10px;
    border-radius: 5px;
    font-size: 17px;
    background-color: transparent;
    z-index: 2;
}

.frm_ipt_lbl{
    position: absolute;
    top: 9px;
    left: 13px;
    font-size: 16px;
    color: rgb(175, 175, 175);
    z-index: 1;
}

.frm_sbc{
    margin-top: 20px;
    max-width: 500px;
    width: 100%;
}
.frm_sbc button{
    background-color: #0E91DF;
    color: white;
    font-family: 'Poppins';
    font-size: 17px;
    border: none;
    border-radius: 5px;
    width: 100%;
    text-align: center;
    height: 35px;
    cursor: pointer;
}

.frm_dlbc{
    display: flex;
    align-items: center;
    justify-content: center;
}
.frm_dlbc button{
    color: #0E91DF;
    font-weight: 600;
    font-family: 'Poppins';
    font-size: 18px;
    border-radius: 5px;
    width: 80%;
    text-align: center;
    height: 35px;
    cursor: pointer;
    border: 2px solid #0E91DF;
    margin: 10px auto 0;
    background-color: transparent;
}

.frm_dlbc button:hover{
    background-color: #0e92df92;
}

.frm_sbc button:hover{
    opacity: .8;
}

.frm_ipt_nts{
    font-style: italic;
    font-size: 14px;
    color: red;
    padding: 0 10px;
}

@media (max-width: 430px){
    .frm_box{
        max-width: 300px;
    }

    .frm_sbc{
        max-width: 300px;
    }
}

