body{
    background: white;
}
.loginSpace{
    width: 100%;
    height: calc(100vh - 50px);
    display: flex;
    flex-direction: row;
    justify-content: center;
    color: #2571B7;
}

.loginSpaceWrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.loginLogoSpace{
    width: 381px;
    height: 111px;
    background-image: url('../img/css/login_logo.png');
    background-size: 381px 111px;
    background-position: center;
}
.loginLoginInputSpace{
    display: flex;
    width: 100%;
    height: 31px;
    margin-top: 30px;

}

.loginLoginLogo, .loginPasswordLogo{
    width: 13px;
    height: 100%;
    background-image: url('../img/css/login_login.png');
    background-size: 13px;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 10px;
}
.loginInputWrapper{
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    border-bottom: solid 1px #D0CAF9;
    height: 100%;
}
.loginInput{
    height: 31px;
    border: 0px;
    background: none;
    width: 250px;
    font-size: 12px;
}
.loginInnerSpaceWrapper{
    width: 306px;
    margin-left: auto;
    margin-right: auto;
    font-size: 12px;
}
.loginPasswordLogo{
    background-image: url('../img/css/login_password.png');
    height: 32px;
    margin-left: 10px;
}
.loginPasswordLabel{
    margin-top: 50px;
    margin-left: 13px;
    font-size: 9px;
}
.passwordInput{
    color:#9D91F4;
    font-size: 14px;
    letter-spacing: 5px;
}
.loginCopyright{
    width: 100%;
    height: 50px;
    text-align: center;
}
.loginHelloLabel{
    font-size: 31px;
    margin-top: 70px;
    font-style:normal;
    font-weight:500;
}
.loginInfoLabel{
    margin-top: 10px;
}
.loginPasswordView{
    background-image: url('../img/css/login_password_view.png');
    width: 13.75px;
    height: 31px;
    background-size: 13.75px 10px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.loginRememberMeWrapper{
    margin-top: 30px;
    height: 32px;
    display: flex;
    justify-content: space-between;
}



.loginRememberMeSpace{
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.loginRememberMeLabel{
    margin-top: 5px;
}

.loginButton{
    display: flex;
    justify-content: center;
    margin-top: 20px;
    height: 49px;
    width: 300px;
    text-align: center;
    background-color: rgba(37, 113, 183, 1);
    color: white;
    border-radius: 50px;

}

.loginButton:hover{
    cursor:pointer;
    box-shadow: 0px 0px 1px 1px #2571B7;
}

.loginButtonLabel{
    margin-top: auto;
    margin-bottom: auto
}
.forgetPasswordButton{
    display: flex;
    justify-content: center;
    margin-top:35px;
}

.forgetPasswordButton:hover{
    cursor:pointer;
    text-decoration: underline;
}

.loginMobileHello{
    display: none;
}

