.auth {
    /* background-color: red; */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: 4rem auto;
    width: 100%;
}

/* /--------------------------------/ Form - START /--------------------------------/ */
.auth .form {
    display: flex;
    flex-direction: column;
    width: 370px;
    /* background-color: green; */
}

.auth .form form {
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px solid var(--gray_l);
    border-radius: 25px;
    /* background-color: yellow; */
}

.auth .form form div.toggler {
    display: flex;
    width: 100%;
    border: 1px solid var(--gray_l);
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    /* background-color: orange; */
}

.auth .form form div.toggler div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    padding: 25px 0;
    cursor: pointer;
    /* background-color: red; */
}

.active-form {
    border-bottom: 1px solid var(--secondary_color);
}

.auth .form form div.toggler div span {
    margin-left: 10px;
}

.auth .form form div.form-holder {
    display: flex;
    flex-direction: column;
    margin: 25px auto;
    /* background-color: red; */
}

.auth .form form div.form-holder button.google,
.auth .form form div.form-holder button.facebook {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 45px;
    border: 1px solid var(--gray_l);
    border-radius: 6px;
    position: relative;
    background-color: white;
    margin-bottom: 15px;
    color: var(--gray);
    font-family: Inter;
    font-weight: 500;
    line-height: 15.6px;
    font-size: 12px;

}

.form form div.form-holder .form-group {
    width: 250px;
    margin: 0 auto;
}

.form form div.form-holder button img {
    position: absolute;
    left: 10px;
}

.form form div.form-holder div.divider {
    height: 1px;
    width: 250px;
    position: relative;
    background-color: var(--gray_l);
    margin: 15px 0;
}

.form form div.form-holder div.divider span {
    position: absolute;
    background-color: white;
    padding: 0 10px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form form div.form-holder div.form-password {
    margin-bottom: 10px;
}

.form form div.form-holder div.form-group label {
    font-family: Inter;
    font-weight: 400;
    line-height: 18.2px;
    font-size: 14px;
    color: var(--gray);
}

section.form form div.form-holder p.terms {
    font-family: Inter;
    font-weight: 500;
    line-height: 15.6px;
    font-size: 12px;
    color: var(--gray);
    width: 250px;
    margin: 10px auto;
}

section.form form div.form-holder p.terms span {
    color: var(--secondary_color);
}

section.form form div.form-holder .sign-up-button {
    margin: 10px auto 0 auto;
    width: 250px;

}

.form form div.form-holder a.forgot-password {
    font-family: Inter;
    font-weight: 700;
    line-height: 21px;
    font-size: 14px;
    color: var(--primary_color);
    text-align: right;
    text-decoration: underline;
    margin: 0;
    width: 250px;
    margin-bottom: 20px;
}

.form form div.form-holder .auth-button {
    margin-top: 10px;
    width: 250px;
}

.form form div.form-holder div.sign-up {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
}


.form aside {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 61px;
    border: 1px solid var(--gray_l);
    border-radius: 50px;
    margin-top: 25px;
    /* background-color: red; */
}

.form aside p,
.form form div.form-holder div.sign-up p {
    margin: 0;
    font-family: Inter;
    font-weight: 500;
    line-height: 20.8px;
    font-size: 16px;
    text-align: center;
    width: 100%;
    color: var(--gray);
}
.form aside span a,
.form form div.form-holder div.sign-up p span a {
    margin-left: 5px;
    font-weight: 700;
    color: var(--primary_color);

}

@media screen and (width <=990px) {
    .auth {
        flex-direction: column;
    }

    .auth .form {
        /* background-color: green; */
        width: 80%;
        margin: 0 auto 2rem auto;
    }

    /* .auth .form form div.form-holder {
        width: 70%;
    } */

    .auth .form form div.form-holder button img {
        left: 25px;
    }
}