#page-connexion {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url('../images/image-background.png');
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

#page-connexion:after {
    content: "";
    background: #333e50;
    opacity: 0.9;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

#page-connexion > * {
    z-index: 10;
}

#page-connexion > h1 {
    text-transform: uppercase;
    color: white;
    font-size: 25px;
    margin-bottom: 30px;
    margin-top: 70px;
}

#formulaire-connexion {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; 
}

#formulaire-connexion > div {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    width: 350px;
}

#formulaire-connexion label {
    background-color: #fff;
    height: 40px;
    width: 50%;
    border: 1px solid #fff;
    padding: 0 10px;
    display: flex;
    align-items: center;
    color: #333e50;
}

#formulaire-connexion input {
    background: transparent;
    border: 1px solid #fff;
    border-left: none;
    height: 40px;
    width: 50%;
    padding: 0 10px;
    display: flex;
    align-items: center;
    color: #fff;
}

#formulaire-connexion button.button-connexion {
    height: 38px;
    background: #d9ea30;
    padding: 0;
    display: flex;
    cursor: pointer;
    margin-top: 20px;
    border: none;
}

#formulaire-connexion button.button-connexion span.text-button {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333e50;
    text-transform: uppercase;
    padding: 0 10px;
    height: 40px;
}

#formulaire-connexion button.button-connexion span.icon-plus {
    height: 38px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
}

#formulaire-connexion button.button-connexion span.icon-plus:before {
    color: black;
    font-size: 30px;
}


/********** **********/
/***** RESPONSIVE PAGE DE CONNEXION *****/
/********** **********/
@media screen and (max-width: 410px) {
    div#fullContent {
        width: 85%;
    }
    
    #formulaire-connexion > div {
        width: 100%;
    }
    
    
}