.page {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh);
}
main {
    flex-grow: 1;
}

.login-visuel
{
    min-height: 100vh;
    
    background-image: url(../images/bg_login.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom right;
    background-color: #efe3e5;
}
.login-main
{
    background-color: var(--rz-primary);
}
.login-content
{
    display: flex;
    flex-direction: column;
    min-height: calc(100vh);
}
.login-body
{
    flex-grow: 1;
}
.logo-brand-white
{
    width: 180px;
    height: 200px;
    margin-top: 80px;
    margin-bottom: 80px;
}
.logo-brand-white img
{
    width: 180px;
    height: 200px;
}
.logo-brand
{
    width: 200px;
    height: 170px;
    margin-top: 80px;
    margin-bottom: 80px;
}
.logo-brand img
{
    width: 200px;
    height: 170px;
}
.logo-estel-white
{
    width: 100px;
    height: 33.5px;
}

.login-header
{
    font-weight: 600;
    font-size: 1.2rem;
    color: white;
    text-transform: uppercase;
}
.login-footer
{
    padding: var(--rz-footer-padding);
    padding-left: 0px;
    padding-right: 0px;
    color:white;
    font-size:0.8rem;
}
.login-footer .version
{
    font-size:0.6rem;
}

.login-mdpoublie
{
    text-align: center;
}

.login-mdpoublie a,
.login-mdpoublie a:hover
{
    color: white;
    text-decoration: none;
}

.login-fields
{
    padding-left: 30px;
    padding-right: 30px;
}

.login-fields input,
.login-fields select
{
    width: 100%;
}


/*
* custom input
*/
.login-fields input.rz-textbox {
    background-color: transparent;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #FFF;
    color: #FFF;
    opacity: 0.7;
    box-shadow: none;
}
.login-fields input.rz-textbox:not(:disabled):not(.rz-state-disabled):active,
.login-fields input.rz-textbox:not(:disabled):not(.rz-state-disabled):focus,
.login-fields input.rz-textbox:not(:disabled):not(.rz-state-disabled):hover
{
    border: none;
    border-bottom: 1px solid #FFF;
    outline: none;
    box-shadow: none;
    opacity: 1;
}
.login-fields input.rz-textbox::placeholder
{
    color: #FFF;
}


/*
* custom button
*/
.login-button button
{
    width: 65% !important;
    border-radius: 0 30px 30px 0!important;
    padding: 1rem 1rem;
}


/*
* Loader
*/
.modalBackground {
    background-color: black;
    opacity: .50;
    filter: Alpha(Opacity=50);
    height: 100%;
    left: 0px;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 10010;
    overflow: hidden;
}
#modalBackgroundLoader {
    z-index: 9999998;
}
#loader {
    z-index: 9999999;
    width: 50px;
    height: 50px;
    position: fixed;
    top: 50%;
    left: 50%;
}
#loader .spinner-border{
    color: var(--rz-primary);
}


/*
* mobile
*/
@media (max-width: 768px) {
    body {
        background-color: var(--rz-primary);
    }
    .login-visuel
    {
        min-height:400px;
        height:400px;
    }
    .login-header
    {
        margin-top: 1.5rem !important;
    }
    .login-content
    {
        min-height: calc(100vh - 400px);
    }
}