﻿.rangee {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: flex-start;
    flex-shrink: 1;
}

.pagecoba {
    min-width: 260px;
    font-size: 16px;
}

.loginbody {
    margin: 0px;
}

.login-frm {
    width: 100vw;
    max-width: 100%;
}

.login-container {
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
}

.login-gauche {
    width: 50%;
    height: 100vh;
    flex-basis: 50%;
    flex-grow: 1;
    position: relative;
}

.login-bg1 {
    opacity: 1;
    width: 100%;
    height: 100%;
    background-image: url("../images/bg1.jpg");
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0px;
    left: 0px;
}

.login-bg2 {
    opacity: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/bg2.jpg");
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0px;
    left: 0px;
}

.login-bg3 {
    opacity: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/bg3.jpg");
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0px;
    left: 0px;
}

.login-afficherImage {
    animation: animAfficherImage 1s forwards;
}

.login-cacherImage {
    animation: animCacherImage 1s forwards;
}

@keyframes animAfficherImage {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes animCacherImage {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.login-logoEntete {
    position: absolute;
    left: 5px;
    top: 5px;
    display: none;
}

.login-logoLogin {
    margin-bottom: 20px;
}

.login-droite {
    flex-basis: 50%;
    flex-grow: 1;
    height: 100vh;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.login-logoBL {
    align-self: start;
    width: 175px;
    margin: 15px 0px 0px 15px;
}

.login-droite-contenu {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding-bottom: 80px;
    overflow-y: auto;
    max-height: 100%;
    margin: auto;
}

.login-sep {
    margin: 20px 0px;
    border: none;
    border-top: 1px solid #bbb;
}

@media only screen and (max-width : 1024px) {

    .login-logoLogin {
        display: none;
    }

    .login-logoEntete {
        display: inline;
    }

    .login-container {
        height: auto;
        flex-direction: column;
        display: block;
    }

    .login-gauche {
        background-color: #eeeeee;
        height: 50vh;
        width: 100%;
    }

    .login-bg {
        width: 100%;
        height: 50vh;
    }

    .login-droite {
        width: 100%;
        height: auto;
    }

    .login-droite-contenu {
        padding: 20px;
        height: auto;
        width: 100%;
        overflow-y: visible;
    }
}
