#boite{
    text-align: center;
    display: flex;
    flex-direction: column;
}

input[type=email]{
    margin: auto;
    width: 90%; 
    padding: 10px; 
    border: 1px solid #ccc; 
    border-radius: 4px; 
    box-sizing: border-box; 
    margin-top: 6px; 
    margin-bottom: 16px; 
    resize: vertical;
    text-align: center;
}

button[type=submit] {
    background-color: #4c66af;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#reset_pass {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
    width: 15%;
    margin: 0 auto;
    padding-bottom: 40px;
}
  
.required{
    font-weight: bold;
    display: flex;
    flex-direction: column;
}

/*  CSS  concernant les mobiles en portrait*/
@media only screen and (max-width : 767px) {
    #reset_pass {

        width: 100%;
        padding: 0px;
        padding-top: 5px;
        padding-bottom: 5px;

    }
}