/*
 ----- V3
*/

.height100 {
    height: 100%;
}

.centered {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: calc(100% - 50px);
    margin: 0;
}

.login_input{
    width: 100%;
}

.login_footer{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
}

.login_forgotPassword{
    display: flex;
    justify-content: center;
    font-size: 14px;
}

.fontGrey{
    color:#ababab;
}

body .login_link{
    color: #A7C949;
    text-decoration: underline;
}
body .login_link:hover{
    color: #b7df53;
    text-decoration: underline;
}

.error_message{
    color: red;
}

.img-login-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 780px){
    .img-login-container{
        display: none;
    }
}