
 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: Poppins, 'sans-serif';
}

body{
    width: 100vw;
    min-height: 100vh;
    background-color: #1333d4 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x:hidden;
    
}

.logo img{
    width: 150px;
}

.carousel_content{
    text-align: center;
    color:#fff;
}

.info{
    background-color: #e3f7ff;
    border: 1px solid #1333d4;
    font-size: 14px !important;
    border-radius: 16px !important;
}

.form-container{
    width: 90%;
}

.form-container h1{
    font-size: 24px;
    font-weight: 700;
}

input{
    width: 100% !important;
}
.alert{
    width: 100%;
    background-color: rgba(59,130, 246,.5);
    border-radius: 5px;
    width: 100%;
    text-align: center;
    padding: 0.75rem;
}

a{
    text-decoration: none;
    color: rgb(0, 114, 237);
    font-size: 12px;
}

.lock_anchor{
    font-weight: 600;
    margin-bottom: 24px;
    display: block;
}

.moved{
    font-size: 12px;
}
.lock{
    width: 11px;
}

label, input{
    display: block;
}


label{
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}

input{
    min-width: 365px;
    padding: 16.5px 14px;
    border-radius: 5px;
    background-color: #f7f9fc;
    border: 1px solid #ccc;
}

form{
    margin-top: 24px;
}

.signInButton{
    width: 100%;
    border-radius:32px !important;
    background-color: rgb(0, 114, 237);
    color:#fff;
    padding: 8px 22px;
    border:none;
    margin-top:24px;
}

button{
    width:100%;
    text-align: center;
    border:none;
    background-color: none;
}

.create_account{
    margin:12px 0;
    padding: 10px 0;
}

.create_account:hover{
    background-color: rgba(0, 114, 237, 0.3);
    cursor:pointer;
}

.phone_input{
    display: flex;
}

.phone_input select{
    width: 30% !important;
}

.phone_input input{
    width: 70%;
}

#verify input{
    min-width: 0;
    width: 60%;
}

#verify select{
    min-width: 0;
    width: 20%;
}
#error{
    width: 30vw;
    padding: 3rem;
}

#error h3{
    width: 100%;
    text-align: center;
    padding: 20px 0;
}

#error h1{
    padding-bottom: 2rem;
}

.logo{
    margin-bottom: 2rem;
}

.slider_container{
    display: flex;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 80%;
    margin: auto;
    text-align: center;
    color: #fff;
}

.slider_container h2{
    font-weight: 700;

}

.info-content p{
    margin-bottom: 0;
    font-size: 14px !important;
}

@media screen and (max-width:600px) {
    body{
        font-size: 12px;
    }

    .form-container{
        width:100%;
        padding: 2rem;
    }
    
    .carousel{
        display:none !important;
    }

    .phone_input{
        min-width: 0;
        width: 100%;
    }

    input{
        min-width: 0;
        width: 100%;
    }

    #verify{
        width: 95vw;
    }
    
    #verify select{
        min-width: 30%;
    }

    #verify input{
        min-width: 0;
        width: 80%;
    }

    #error{
        width: 95vw;
    }

    .slider_container{
        min-height: 0;
    }


}