.login-wrapper {
    display: flex;
    min-height: 100vh;
    height: 100vh;
    width: 100%;
    padding: 30px;
    /*justify-content: center;	*/
    background-image:url("../images/background_image.svg");
    background-size: cover;
}
.login-wrapper .header-logo-wrapper{
    position: absolute;
    display: flex;
    align-items: center;
    /*margin-top: 50px;*/
}

.login-wrapper .header-logo-wrapper h2{
    color: white;
    font-weight: 600;
    height: 10%;
    margin: 0;
    padding-left: 5px;
}
.login-wrapper .header-logo-wrapper img{
    height: 50px;
    width: 50px;
}

.login-wrapper .box-form-wrapper {
    width: 100%;
}

.login-wrapper .box-form-wrapper .form-wrapper{
    background: #FFFFFF;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05), 0 -5px 5px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    width: 400px;
    height: fit-content;
    padding: 35px;
}


.login-wrapper .box-form-wrapper .form-wrapper h3{
    text-align: center;
    margin: 15px 0;
}

.login-wrapper .box-form-wrapper .form-wrapper input{
    border: 1px solid #C2C2C2;
    box-shadow: inset 1px 2px 2px rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 13px;
}
.login-wrapper .box-form-wrapper .form-wrapper label{
    font-size: 13px;
}
.login-wrapper .box-form-wrapper .form-wrapper .forgot-password{
    background: none;
    border: none;
}

.login-wrapper .box-form-wrapper .form-wrapper .send-code{
    background: none;
    border: none;
}

.login-wrapper .box-form-wrapper .form-wrapper button[type=submit]{
    width: 100%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
    border: none;
    border-radius: 5px;
    padding: 6px 16px;
    background: #3F80FF;
    color: white;
    font-size: 13px;
}
.login-wrapper .box-form-wrapper .form-wrapper form{
    margin: 30px 0;
}
.main-content-wrapper-login{
    padding-left: 0px!important;
    transition: margin-left 0.3s ease;
}