body{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100dvh;
    padding: 16px;
}

/* form global */
    .containerForm{
        display: flex;
        justify-content: center;
        box-shadow: var(--box-shadow);
        border-radius: 16px;        
        border: 2px solid var(--green);
    }

    .contentForm{
        position: relative;
        width: 400px;
    }

    .contentForm:first-child{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        background: var(--white);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        padding: 16px;
        border: 2px solid var(--blue);
        border-radius: 13px;
    }

    .boxLogo{
        width: 150px;
        height: auto;
    }

    .boxLogo img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .contentForm:first-child p{
        color: var(--blue);
        font-size: 45px;
        font-weight: 700;
        text-align: center;
    }
    
    .contentForm:last-child{
        padding: 32px;
    }

    .contentForm:last-child h1{
        font-size: 25px;
    }

    .contentForm:last-child p{
        color: var(--light-black);
        margin: 16px 0 20px 0;
    }

    .contentForm:last-child form{
        display: flex;
        flex-direction: column;
    }

    .contentForm:last-child form label{
        color: var(--light-black);
        margin-bottom: 5px;
        font-weight: bold;
    }

    .contentForm:last-child form input, .contentForm:last-child form button{
        padding: 6px;
        width: 100%;
        margin-bottom: 16px;
        border: 1px solid var(--light-black);
        border-radius: 5px;
    }
    
    .contentForm:last-child form input:focus{
        outline: none;
        border: 1px solid var(--blue);
    }

    .flexDiv{
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 8px;
        margin-bottom: 16px;
    }

    .boxRememberMe{
        display: flex;
        align-items: center;
        gap: 3px;
    }

    .boxRememberMe label, .flexDiv a{
        text-wrap: nowrap;
        font-size: 14px;
        color: var(--black) !important; 
        cursor: pointer;
    }

    .flexDiv a{
        color: var(--red) !important;
    }

    .flexDiv a:hover{
        text-decoration: underline;
    }

    .boxRememberMe input{
        transform: translateY(6px);
        margin: 0;
    }

    .contentForm:last-child form button{
        border: none;
        color: var(--white);
        cursor: pointer;
    }

    .contentForm:last-child form .valider{
        background: var(--blue);
    }

    .contentForm:last-child form .renvoyerCode{
        background: var(--red);
    }

    .contentForm:last-child form button:hover{
        scale: 1.03;
    }
/* form global */



/* responsive */
    @media screen and (max-width: 850px) {
        body{
            align-items: flex-start;
            padding-bottom: 16px;
        }

        .containerForm{
            flex-direction: column;
        }

        .contentForm{
            width: 300px;
        }
        .contentForm:first-child{
            gap: 8px;
        }

        .boxLogo{
            margin: 0;
        }
         
        .contentForm:first-child p{
            font-size: 30px;
        }

        .contentForm:last-child{
            padding: 16px;
        }

        .contentForm:last-child h1{
            font-size: 20px;
            text-align: center;
            width: 100%;
        }

        .contentForm:last-child p{
            width: 100%;
            text-align: center;
        }
    }
/* responsive */