/* #region Connexion */
body {
    --banner-height: 80px;
    background-image: url('../img/main_background.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 80px 0;
}
body.ttom {
    background-image: url('../img/main_background_ttom.png');
}
.login-card {
    position: relative;
    background-color: #ffffffdb;
    width: 50%;
    max-width: 450px;
    margin: auto auto;
    transform: translateY(calc(0px - var(--banner-height)));
    padding: 40px 80px;
    border-radius: 10px;
}
.login-card .logo-myrdt {
    width: 80%;
    max-width: 300px;
}
.login-card .separator > span:not(:nth-child(2)) {
    height: 1px;
    background-color: #b9b9b9;
}

.lang-switcher {
    right: 0;
}

.login-card .btn.btn-orange:not(.btn-labeled) {
    background-color: #515151;
    background-image: url('../img/bandes_orange.png'), linear-gradient(45deg, var(--primary-color), var(--primary-color));
    background-position: center center, center left;
    background-repeat: no-repeat;
    background-size: cover, 50px 115%;
    text-align: left;
    overflow: hidden;
    transition: all cubic-bezier(0, 0.54, 0.47, 0.83) 0.3s;
    border-left-color: var(--primary-color);
}
body.ttom .login-card .btn.btn-orange:not(.btn-labeled) {
    background-image: url('../img/bandes_ttom.png'), linear-gradient(45deg, var(--primary-color), var(--primary-color));
}
.login-card .btn.btn-orange:not(.btn-labeled):hover {
    color: #fff;
    background-color: #515151;
    text-indent: 30%;
    background-position-x: 40px, 0;
}

@media screen and (max-width: 992px) {
    body {
        padding: 0 0 var(--banner-height) 0;
    }
    .login-card {
        width: 100%!important;
        border-radius: 0!important;
        max-width: inherit!important;
        margin: 0!important;
        height: 100%!important;
        min-height: calc(100vh - var(--banner-height))!important;
        padding: 60px 20px 20px 20px!important;
        transform: translateY(0);
    }
    .lang-switcher {
        top: 0;
    }
}
/* #endregion */