body{
  background: linear-gradient(to top right, rgba(220, 227, 228, 1.0), rgba(248, 250, 251, 1.0) );
}
main{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0px 100px 0px 100px;
}
.bgConnexion{
    background-color: white;
    width: 500px;
    height: fit-content;
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 0px 0px 50px 0px;
}

.bg-img img{
    width: 80px;
    background-color: black;
    border-bottom-right-radius: 50% !important;
    border-radius: 5px;
    padding: 10px 5px 10px 5px;
}

.contentConnexion{
    padding: 30px 0px 0px 0px;
}
.contentConnexion p{
    text-align: center;
}
.contentConnexion a{
    color: black;
    font-weight: bold;
    text-decoration: none;
}
.contentConnexion h1{
    text-align: center;
    letter-spacing: 3px;
    font-weight: 300;
}

form{
    display: grid;
    padding: 50px 100px 0px 100px;
    row-gap: 30px;
}
form input{
    border: none;
    padding: 10px 0px 10px 10px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}
form button{
    border: none;
    color: white;
    color: white;
    padding: 10px 20px 10px 20px;
    border-radius: 5px;
    background-color: rgba(39, 194, 61, 1.0);
    font-size: 18px;
}

.mdpForget{
    text-align: center;
    padding-top: 10px;
}
.mdpForget a{
    text-decoration: none;
    color: black;
}

@media screen and (min-width: 600px){
    .contentConnexionResponsive{
        display: none;
    }
}
@media screen and (max-width: 600px){
    .contentConnexion{
        display: none;
    }
    .contentConnexionResponsive{
        display: block;
    }
}

/* RESPONSIVE */

@media screen and (max-width: 600px){
    .bgConnexion{
        max-width: 300px;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px !important;
    }
    form{
        display: grid;
        justify-content: center;
        padding: 50px 50px 0px 50px !important;
    }
    .bg-img img{
        width: 60px;
    }
}

/* FIN RESPONSIVE */