#page #conteneur_login {
    margin-bottom: 60px;
}

#page .fond_gris {
    border: 1px solid #dfdfdf;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
}

#page .form_login {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

#page h3 {
    position: relative;
    top: 0;
    left: 0;
    font-size: 25px;
    padding: 25px;
    padding-bottom: 15px;
    font-family: "Barlow";
    text-align: center;
}

#page h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: #E95D0F;
}

.navigation {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 25px;
}

.content {
    padding: 25px 45px;
    height: 100%;
}


#page #login .error {
    text-align: center;
    margin-bottom: 20px;
    color: #840606;
}

@media (max-width: 575px) {

    #page h3 {
        padding: 20px 10px;
    }

    .content {
        padding: 20px;
    }
}
