body {
    background: var(--background-color-dark-gradient);
    font-family: Open Sans, Arial, sans-serif;
    min-height: 100vh;
    color: var(--neutral-100);
    font-weight: 400;
}

.content-wrapper {
    width: 70vw;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 7vw;
}
.content-wrapper form{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.content-wrapper a,
.social-buttons-wrapper,
.input-wrapper-login,
.back-button {
    margin-bottom: 1vw;
}

.title-login {
    font-size: var(--title-1-size);
    color: var(--neutral-100);
    text-align: center;
    font-weight: 700;
}

.input-login {
    width: 100%
}

.input-wrapper-login {
    width: 400px;
}

.social-buttons-wrapper button {
    background: transparent;
    border: none;
}

.social-buttons-wrapper button img {
    cursor: pointer;
    border-radius: 80px;
}

@media only screen and (max-width: 760px) {
    .input-wrapper-login {
        width: 85%;
    }
    .social-login-button {
        width: 140px;
    }

    .content-wrapper {
        width: 100%;
    }

   .social-buttons-wrapper {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

   .title-login {
        font-size: var(--title-1-mobile-size);
    }
}
