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: 550px;
    height: fit-content;
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding-bottom: 10px;
}

.bg-img img{
    width: 80px;
    background-color: black;
    border-bottom-right-radius: 50% !important;
    border-radius: 5px;
    padding: 10px 5px 10px 5px;
}

.contentConnexion{
    padding: 10px 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 50px 0px 50px;
    row-gap: 30px;
}
@media screen and (min-width: 601px){
    .form-input{
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 30px;
        grid-template-areas:"input-1 input-4"
                             "input-2 input-5"
                             "input-3 input-6";
        row-gap: 30px;
    }
}
form input{
    border: none;
    padding: 10px 0px 10px 10px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin-bottom: 15px;
}
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;
    width: 100%;
    place-content: center !important;
    justify-content: center !important;
}

.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;
        padding-bottom: 0px !important;
    }
    .contentConnexion{
        padding: 0px 0px 0px 0px;
    }
    form{
        display: grid;
        justify-content: center;
        padding: 20px 50px 0px 50px !important;
    }
    form input:last-child{
        margin-bottom: 5px !important;
    }
    .bg-img img{
        width: 60px;
    }
    .mdpForget{
        padding: 0px 0px 0px 0px !important;
    }
}

/* FIN RESPONSIVE */