body {
    background-image: url('/img/CONNEXION.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgba(41, 25, 25, 0.4);
    background-blend-mode: overlay;
}


section.users {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 24%;
    max-width: 400px;
    margin: 20vh auto 20vh auto;
    padding: 2.5em;
    background-color: white;
    border-radius: 15px;
    font-size: 0.8em;
}

h3 {
    text-align: center;
    font-size: 1.5em;
    margin: 1.5em 0;
    font-weight: 700
}

/* formulaire */
form {
    width: 100%;
}

.input {
    display: flex;
    flex-direction: column;
    margin-bottom: 1em;
}

.input label {
    font-weight: 700;
    margin-bottom: 0.2em;
}

.input input {
    padding: 0.8em;
    border: 1px solid #a3a2aa;
    border-radius: 7px;
    font-family: 'Poppins', sans-serif;
}

#subject_2 {
    display: none;
}

button,
.button-login {
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    background-color: #226fd7;
    color: white;
    border: 0;
    border-radius: 30px;
    padding: 0.8em;
    text-align: center;
    font-weight: 600;
}

.text-grey {
    margin-top: 2em;
    color: #3f3d4a;
    text-align: center
}

.grey-link {
    color: #3f3d4a;
    font-weight: 600;
}

.blue-link {
    color: #226fd7;
    text-decoration: underline;
}

@media screen and (max-width: 1023px) {
    body {
        height: 100vh;
        padding-top: 5%;
    }

    section.users {
        width: 90%;
        max-width: 90%;
        margin: 0 auto;
    }

}