#content.container-fluid{
    background-image: url('/static/img/login-background.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.login-full-page{
    height: calc(100vh - var(--navbartop-height) - var(--footer-height) - 1rem);
}
.login-form-logo img{
    max-height: 50px;
    width: auto;
}

.login-form-container, .register-form-container{
    background-color: #FFFFFF;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.login-form-container{
    width: 375px;
}

.register-form-container{
    width: 450px;
}

.login-form-footer{
    font-size: 0.8rem;
}

@media (max-width: 767.98px){
    .login-full-page{
        height: calc(100vh - var(--navbartop-height) - var(--footer-height) - var(--sidebar-height-bottom));
    }
    .register-form-container{
        width: 350px;
    }
}
