* {
    font-family: Inter;
}

.leftBanner {
    background-color: #00061B;
    border-radius: 50px;
    color: #fff;
    padding-top: 35px;
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
}

h1 strong {
    color: #00B7EC;
}

h1 {
    padding: 0px 25px;
    font-size: 36px;
    font-weight: 600;
}

.leftBanner p {
    font-size: 20px;
    padding: 0 25px;
    font-style: italic;
    font-weight: 400;
}

.leftBanner img {
    width: 100%;
    border-radius: 0px 0px 50px 50px;
}

/* form css start */
.loginForm {
    background-color: #F2F0EB;
    border-radius: 50px;
    padding: 40px;
    height: 100%;
}

.loginForm p {
    font-size: 16px;
    font-weight: 400;
    color: #64748B;
}

.loginForm h2 {
    font-size: 32px;
    font-weight: 600;
    color: #27364B;
}

.loginForm label img {
    max-width: 20px;
    margin-right: 8px;
}

.send-otp-btn-login {
    min-width: 84px;
    height: 30px;
    outline: 0;
    padding: 10px;
    background: #fff;
    border-radius: 3px;
    font-weight: 600;
    font-size: 13px;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    color: #4eb543;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #4eb543;
    position: absolute;
    right: 8px;
    top: 42px;
}


#timePassword,
#timeSignin {
    min-width: 84px;
    height: 30px;
    outline: 0;
    padding: 10px;
    background: #fff;
    border-radius: 3px;
    font-weight: 600;
    font-size: 10px;
    line-height: 25px;
    text-align: center;
    text-transform: uppercase;
    color: #4eb543;
    display: none;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 8px;
    top: 35px;
    border: 0;
}

#timeSignin {
    line-height: 10px;
    top: 40px;
}

.send-otp-btn-login:active,
.send-otp-btn-login:focus,
.send-otp-btn-login:hover {
    background: #4eb543;
    color: #fff;
    border: 1px solid #4eb543;
    outline: 0;
    box-shadow: none;
}

.btns button {
    background-color: #39B549;
    box-shadow: 0px 1px 6px 0px #00000040;
    color: #fff;
    border: none;
    outline: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 0px;
    width: 100%;
    border-radius: 2px;
    text-transform: uppercase;
}

.spinner-border {
    width: 1rem;
    height: 1rem;
}

.spinnerBtn {
    display: none;
}


@media screen and (min-width:992px) and (max-width:1199px) {
    h1 br {
        display: none;
    }

    .loginForm {
        padding: 50px 30px;
    }
}

@media screen and (max-width:991px) {
    
    .leftBanner{
        border-radius: 20px;
        height: auto;
    }
    .leftBanner img {
        border-radius: 0px 0px 20px 20px;
    }
}
@media screen and (max-width:576px) {
    .leftBanner {
        padding-top: 15px;
    }
    h1 {
        padding: 15px;
        font-size: 28px;
        margin-bottom: 0;
    }
    .leftBanner p{
        padding: 15px;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    .leftBanner p br{
        display: none;
    }
    .leftBanner p{
        font-size: 14px;
        padding-top: 0;
    }
    .loginForm {
        border-radius: 20px;
        padding: 20px 15px;
        height: auto;
    }
    .loginForm h2{
        font-size: 24px;
    }
    .form-group label{
        margin-bottom: 5px;
    }
}