.login_container{
    position: fixed;
    top:0px;
    left:0px;
    transition: 0.5s;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    z-index: 99999;
}
.login_box{
    width: 30vw;
    height: 80vh;
    min-width:  500px;
    background-color: white;
    border-radius: 25px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    margin: auto;
    display: flex;
    position: relative;
    overflow: scroll;
    
}
.login_box::-webkit-scrollbar {
    display: none;
}
.close_box{
    margin-top: 2vh;
    position: absolute;
    width: 100%;
    height: 5vh;
    display: flex;
}
.close_box img{
    height: 100%;
    margin-left: auto;
    cursor: pointer;
}
.login_view{
    width: 70%;
    /* height: 80%; */
    margin: auto;
    overflow: hidden;
}
.container{
    width: 200%;
    height: 100%;
    margin: auto;
    display: flex;
}
.box{
    width: 100%;
    display: flex;
}

.box .input-box {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.box .input-box label {
    font-size: 13px;
    margin-bottom: 5px;
}

.box .input-box input {
    letter-spacing: 1px;
    font-size: 14px;
    box-sizing: border-box;
    width: 100%;
    height: 35px;
    border-radius: 5px;
    outline: none;
    padding: 0 12px;
    background-color: rgb(230, 240, 255);
}
.btn-box div button{
    width: 100%;
    height: 45px;
    border-radius: 20px;
    border-color: rgb(13, 138, 255);
    background-color: white;
    font-size: 15px;
    color: rgb(13, 138, 255);;
}
.btn-box div button:hover{
    background-color: rgb(13, 138, 255);
    color: white;
}
.btn-box div{
    padding-top: 20px;
    padding-bottom: 20px;
}
.change_loginCard{
    cursor: pointer;
    color: rgb(13, 138, 255);
    margin: unset;
}