#content.auth {
    display: flex;
    flex-direction: row;
    /* align-items: center; */
    width: 100vw;
    height: 100vh;
    /* background-color: var(--color-theme-2); */
}

/* .auth-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 1200px;
    height: 700px;
    margin: 0 auto;
    padding: 40px;
    padding-left: 20px;
    border-radius: var(--border-radius);
    background-color: var(--color-theme-3);
    z-index: 10;
} */

.auth-section-container {
    display: flex;
    align-items: center;
    width: 50%;
    height: 100%;
}

.auth-section-container:nth-child(1) {
    /* left: 0; */
    justify-content: end;
    background-color: var(--color-theme-3);
}

.auth-section-container:nth-child(2) {
    /* left: 50%; */
    justify-content: start;
    background-color: var(--color-theme-2);
}

.auth-section {
}

.auth-section-logo {
    display: flex;
    flex-direction: column;
    color: #fff;
}

.auth-stripe-logo {
    margin-top: -50px;
}

.auth-stripe-logo img {
    width: 470px;
}

.auth-stripe-title {
    font-size: 34px;
    font-weight: 500;
    text-align: center;
}

.auth-section-form {
    width: 400px;
    margin-left: 20px;
}

#content.auth .textbox {
    width: 400px;
    padding: 7px;
    border: 1px solid var(--color-theme-3);
}

#content.auth .button {
    /* color: var(--color-theme-3); */
	/* background-color: var(--color-theme-3); */
    font-weight: normal;
	border: 1px solid var(--color-theme-3);
}

#content.auth .button:hover,
#content.auth .button.active {
	color: #fff !important;
	background-color: var(--color-theme-3);
}

#content.auth a {
    text-decoration: none;
}

#content.auth a:hover {
    text-decoration: underline;
}

#password-strength {
    padding: 5px 10px;
    border-radius: var(--border-radius);
}

#password-strength.blank {
    background-color: transparent;
}

/* cellulare in verticale */
@media screen and (max-device-width: 480px) and (orientation: portrait) {
    #content.auth {
        flex-direction: column;
    }

    .auth-section-container {
        align-items: start;
        width: 100%;
    }

    .auth-section-container:nth-child(1) {
        justify-content: center;
        height: 35%;
        padding-bottom: 10px;
    }
    
    .auth-section-container:nth-child(2) {
        justify-content: center;
        padding: 20px 0;
    }

    .auth-section-logo {
        flex-direction: row;
        align-items: center;
        margin-left: -25px;
    }

    .auth-stripe-logo {
        margin-top: 0;
        text-align: center;
    }

    .auth-stripe-logo img {
        width: 200px;
    }

    .auth-stripe-title {
        font-size: 14px;
        font-weight: 500;
    }

    .auth-section-form {
        width: 100%;
    }

    .auth-section-form .form {
        margin-bottom: 15px;
    }
    
    #content.auth .textbox {
        width: 100%;
    }
}

/* tablet in verticale */
@media screen and (min-device-width: 490px) and (orientation: portrait) {
    #content.auth {
        flex-direction: column;
    }

    .auth-section-container {
        align-items: start;
        width: 100%;
    }

    .auth-section-container:nth-child(1) {
        align-items: center;
        justify-content: center;
        height: 35%;
        /* padding-bottom: 10px; */
    }
    
    .auth-section-container:nth-child(2) {
        justify-content: center;
        padding: 20px 0;
    }

    .auth-section-logo {
        flex-direction: row;
        align-items: center;
        margin-left: -25px;
    }

    .auth-stripe-logo {
        margin-top: 0;
        text-align: center;
    }

    .auth-stripe-logo img {
        width: 200px;
    }

    .auth-stripe-title {
        font-size: 35px !important;
        font-weight: 500;
    }

    .auth-section-form {
        width: 100%;
    }

    .auth-section-form .form {
        margin-bottom: 15px;
    }
    
    #content.auth .textbox {
        width: 100%;
    }
}

/* totem in verticale */
@media screen and (min-device-width: 700px) and (orientation: portrait) {
    #content.auth * {
        font-size: var(--font-size-totem);
    }

    .auth-section-container {
        align-items: center;
    }
}