/* ---------- */
/* page login */
/* ---------- */

.fondEcran {
    position: absolute;

}

.fondEcran .pseudoLogIn {
    font-size: 5.5em;
    width: auto;
    margin: 0;
    text-align: left;
    padding-left: 15%;
}

.formulaireLogin {
    width: 380px;
    height: 480px;
    position: relative;
    margin: 50% 0% 0% 55%;
    background: rgba(255, 255, 255, 0.756);
    padding: 5px;
    overflow: hidden;
    border-radius: 5%;
}

.boutonLogin {
    width: 220px;
    margin: 35px auto;
    position: relative;
    box-shadow: 0 0 20px 9px #10efff5e;
    border-radius: 30px;
}

.boutonBascule {
    padding: 10px 30px;
    cursor: pointer;
    background: transparent;
    border: 0;
    outline: none;
    position: relative;
    font-size: 0.9em;
}

#bouton {
    top: 0;
    left: 0;
    position: absolute;
    width: 110px;
    height: 100%;
    background: linear-gradient(to right, #6c10ff, #06fbff);
    border-radius: 30px;
    transition: .5s;
}

.lienSocial {
    margin: 30px auto;
    text-align: center;
}

.lienSocial img {
    width: 30px;
    margin: 0 12px;
    box-shadow: 0 0 20px 0 #7f7f7f3d;
    cursor: pointer;
    border-radius: 50%;
}

.inputGroup {
    top: 180px;
    position: absolute;
    width: 280px;
    transition: .5s;
}

.inputLog {
    width: 100%;
    padding: 10px 0;
    margin: 5px 0;
    border-left: 0;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid #999;
    outline: none;
    background: transparent;
}

.boutonEnvoyer {
    width: 85%;
    padding: 10px 30px;
    cursor: pointer;
    display: block;
    margin: auto;
    background: linear-gradient(to top, #6c10ff, #06fbff);
    border: 0;
    outline: none;
    border-radius: 30px;
}

.boutonEnvoyer:hover {
    background: linear-gradient(to bottom, #6c10ff, #06fbff);
}

.checkBox {
    margin: 30px 10px 30px 0px;
}

.termesMotDePasse {
    cursor: pointer;
}

.termesConditions:link {
    color: #00aced;
}

.termesConditions:visited {
    color: #00aced;
}

.termesConditions:hover {
    color: #43d29e;
}

.mdp {
    color: #777;
    font-size: 12px;
    bottom: 68px;
    position: absolute;
}

#logIn {
    left: 50px;
}

#register {
    left: 450px;
}

/* ----------------------------------------------------partie Media Screen----------------------------------------------------------------- */


@media (max-width: 800px) {
    .fondEcran{
        position: initial;
    }
    .formulaireLogin{
        margin: 150px auto;
    }
}
@media (max-width: 600px) {
    .formulaireLogin{
        width: 280px;
        font-size: 0.8em;

    }
    .boutonBascule{
        padding: 10px 35px;
    }
    .inputGroup{
        top: 150px;
        width: 170px;
    }
    .mdp{
        font-size: 10px;
    }
}
