@import url('https://fonts.googleapis.com/css2?family=Barlow&family=Inter&family=Itim&family=Montserrat&family=Open+Sans&family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

:root {
    --blue: #072AC8;
    --light: #1E969F;
    --yellow: #FCF300;
    --orange: #FFC600;
    --Poppins: 'Poppins', sans-serif;
    --Montserrat: 'Poppins', sans-serif;
    --Inter: 'Poppins', sans-serif;
    --Barlow: 'Poppins', sans-serif;
}

.login {
    width: 100vw;
    display: flex;
    justify-content: center;
}

.login__box {
    padding-top: 30px;
    border-radius: 15.293px;
    background: #FFF;
    box-shadow: 0px 0px 43.395px 0px rgba(0, 0, 0, 0.08);
    width: 98%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* .login__box__left {
    flex-grow: 1;
} */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}



.login__box__right {
    display: none;
    flex-grow: 1;
    height: 100%;
    background-color: var(--blue);
    border-top-right-radius: 15.293px;
    border-bottom-right-radius: 15.293px;
    justify-content: center;
    align-items: center;

}

.login__box__left__h1 {
    margin-top: 20px;
    color: #0F172A;
    text-align: center;
    font-family: var(--Poppins);
    font-size: 19.221px;
    font-style: normal;
    font-weight: 600;
    line-height: 25.714px;
    /* 133.778% */
    text-transform: capitalize;
}

.login__box__left__para {
    color: #0F172A;
    text-align: center;
    font-family: var(--Poppins);
    font-size: 12.272px;
    font-style: normal;
    font-weight: 400;
    line-height: 16.417px;
    /* 133.778% */
    text-transform: capitalize;
}

.login__box__right__H1 {
    color: #FFF;
    text-align: center;
    font-family: var(--Poppins);
    font-size: 18.504px;
    font-style: normal;
    font-weight: 600;
    line-height: 24.754px;
    width: 180px;
    /* 133.778% */
    text-transform: capitalize;
}

.login__box__left__head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login__box__left__head__h1 {
    color: #0F172A;
    text-align: center;
    font-family: var(--Poppins);
    font-size: 16.208px;
    font-style: normal;
    font-weight: 600;
    line-height: 21.683px;
    /* 133.778% */
    text-transform: capitalize;
}

.login__box__left__head__register,
.login__box__left__head__login {
    display: flex;
    padding: 8.468px 27.521px;
    justify-content: center;
    align-items: center;
    gap: 10.585px;
    border-radius: 952.66px;
    background: var(--blue);
    color: #FFF;
    text-align: center;
    font-family: var(--Poppins);
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 15.119px;
    text-transform: capitalize;
    text-decoration: none;
    width: 200px;
    height: 40px;
    transition: 0.5s;

    &:hover {
        background-color: #fff;
        color: var(--blue);
        border: 2px solid var(--blue);
    }
}

.login__box__left__head__login {
    margin-top: 10px;
    background-color: #fff;
    color: var(--blue);
    border: 2px solid var(--blue);

    &:hover {
        background-color: var(--blue);
        color: #fff;
        border: 2px solid var(--blue);
    }
}

.login__box__left__search {
    display: flex;
    width: 98%;
    padding: 12.658px 9.737px;
    align-items: center;
    justify-content: center;
    gap: 9.737px;
    margin-top: 30px;
    border-radius: 2.921px;
    border: 0.974px solid rgba(0, 0, 0, 0.10);
    background: #FAFBFE;
    font-size: 10px;
}

.login__box__left__search__flag {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    border-radius: 2.95px;
}

.login__box__right__country {
    color: rgba(80, 90, 124, 0.76);
    outline: none;
    border: none;
    text-indent: 1px;
    text-overflow: '';
    background: #FAFBFE;
    width: 100%;

}

.login__box__left__search i {
    color: #26B53C;
    width: 28px;
    height: 28px;
    font-size: 20px;
    margin-top: 8px;
}

.login__box__left__search__box {
    color: rgba(80, 90, 124, 0.76);
    font-family: var(--Poppins);
    font-size: 15.5px;
    font-style: normal;
    font-weight: 400;
    line-height: 15.389px;
    outline: none;
    border: none;
    text-transform: capitalize;
    background: #FAFBFE;
    width: 100%;

    &:hover {
        background-color: #FAFBFE;
    }
}

.login__box__left__otp {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.login__box__left__otp__btn {
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: var(--blue);
    display: flex;
    padding: 10px;
    width: 50%;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #fff;
    transition: 0.5s;

    &:hover {
        background-color: #fff;
        color: var(--blue);
        border: 2px solid var(--blue);
    }
}

.login__box__left__scanner {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.login__box__right__scannerbox1 {
    width: 332.629px;
    height: 332.629px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.00) 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login__box__right__scannerbox2 {
    width: 237.046px;
    height: 237.046px;
    fill: linear-gradient(179deg, rgba(255, 255, 255, 1) 0.53%, rgba(255, 255, 255, 1) 224.97%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login__box__right__scannerbox3 {
    border-radius: 22.94px;
    background: #FFF;
    box-shadow: 0px 0px 4.301px 0px rgba(0, 0, 0, 0.09);
    width: 206.459px;
    height: 224.62px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login__box__right__fee {
    color: #FFF;
    font-family: var(--Poppins);
    font-size: 15.249px;
    font-style: normal;
    font-weight: 600;
    line-height: 15.142px;
    /* 99.302% */
    text-transform: capitalize;
}

.login__box__right__fee__para {
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--Poppins);
    font-size: 11.623px;
    font-style: normal;
    font-weight: 400;
    line-height: 11.541px;
    /* 99.302% */
    text-transform: capitalize;
}

.login__box__left__forms {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.login__box__left__nested__forms {
    display: flex;
    gap: 20px;
    width: 98%;
}


.login__box__left__forms__input {
    display: flex;
    align-items: center;
    padding: 10px;
    gap: 10px;
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #FAFBFE;
    width: 98%;
    color: rgba(80, 90, 124, 0.76);
    font-family: var(--Poppins);
    font-size: 11.814px;
    font-style: normal;
    font-weight: 400;
    line-height: 15.804px;
    /* 133.778% */
    text-transform: capitalize;
}



.login__box__left__forms__input__box {
    border: none;
    outline: none;
    background-color: #FAFBFE;
    width: 100%;
}

@media screen and (min-width:768px) {
    .login__box__left {
        align-items: center;
        justify-content: center;
        flex-grow: 1;
    }

    .login__box__left__search {
        width: 50%;
        margin-left: 25%;
        justify-content: space-around;
    }

    .login__box__left__forms__input,
    .login__box__left__nested__forms {
        width: 40%;
    }

    .calender__input {
        width: 100%;
        color: rgba(80, 90, 124, 0.76);
    }
}

@media screen and (min-width:1024px) {
    .login__box__left__scanner {
        display: none;
    }

    .login__box__left {
        gap: 40px;
        width: 70%;
    }

    .login__box__right {
        display: flex;
        flex-direction: column;
        width: 700px;
    }

    .login__box {
        padding-top: 0px;
        margin-top: 50px;
        width: 80%;
        height: 90vh;
        display: flex;
        flex-direction: row;
    }

    .login__box__left__search {
        margin-top: 50px;
    }

    .login__box__left__head {
        flex-direction: row;
        justify-content: space-around;
        margin-top: 30px;
    }

    .login__box__left__head__btns {
        display: flex;
        gap: 20px;
    }

    .login__box__left__head__register,
    .login__box__left__head__login {
        width: 100px;
    }

    .login__box__left__head__login {
        margin-top: 0px;
    }

    .login {
        height: 100vh;
    }


}

@media screen and (min-width:1440px) {}

/* #id_mobile{
    background-color: red;
} */