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

body{
    height: 100%;
}

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

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

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

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

}

.title h1:nth-of-type(2) {
}

form{
    display:flex;
    flex-flow: column;
    align-items: center;
}

.form_row{
    width:100%
}

.form_row:nth-child(1), .form_row:nth-child(2){
    margin-bottom: 1em;
}

.accountExist{
    width:100%;
    margin-top: 3px;
    font-size: 13px;
    text-align: left;
}

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

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

@media screen and (min-width: 700px) {

    .mb-3{
        font-size: 40px;
    }

    .app{
        font-size: 50px;
    }

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

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

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