@import url("variables-6cb6ce045f5a52349ee69721cc796f08.css");

.center-form{
    margin-top: 3rem;
    margin-right: 5%;
    margin-left: 5%;
    display: flex;
    flex-direction: column;
    font-family: var(--main-font),sans-serif;
}

.recovery{
    font-style: italic;
    font-size: clamp(10px, 6vw, 13px);

}

.title{
    display:flex;
    flex-direction: column;
    align-items: center;
    width:100%;
}

.app{
    font-weight: Bolder;
    margin-bottom:2rem;
    font-size: clamp(38px, 8vw, 50px);
    text-align: center;
}

h1.mb-3{
    font-size: clamp(28px, 6vw, 40px);
}

form input:first-of-type {
    margin-bottom: 1rem;
}

button{
    margin-left: 10vw; /*Va de paire avec le margin parent et la taille du bouton, 100-5-75 */
}

.trait
{
    width: 100%;
    border-top: 1px solid #000;
    margin-bottom: 1rem;
}

.btn-primary{
    background-color: var(--primary-color);
    outline-color: var(--primary-color);
}

.help {
    display: flex;
    flex-direction: column;
}

@media screen and (min-width: 700px) {
    body {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .center-form {
        width: 630px;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 4rem;
    }

    .help {
        align-self: flex-start;
    }

    form {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    form label, .recovery {
        align-self: flex-start;
    }

    form input {
        width: 100%;
        box-sizing: border-box;
    }

    button {
        margin:0;
    }
}