.global-container {
    background: var(--green);
}

.header-page .header-toolbar .login-button, .active-menu-button {
    animation: none !important;
}

.auth-page-container {
    margin-top: 100px;
}

.auth-section {
    padding: 80px 0;
}

.auth-section .lg-title {
    font-size: 40px;
    text-align: center;
}

.auth-section:not(.profile-section) .auth-content-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.auth-section:not(.profile-section) .auth-content-container .form {
    max-width: 380px;
    width: 100%;
}

.auth-section .auth-content-container .form .form-control,
.auth-section .auth-content-container .form .form-control-checkbox {
    margin-bottom: 15px;
}

.auth-section.bg-reverse .form-control {
    background: var(--green-light) !important;
    box-shadow: none;
}

.auth-section.bg-reverse .shadow-pulse {
    animation: none !important;
}

.auth-section .auth-content-container .form button {
    margin-bottom: 15px;
}

.auth-section .auth-content-container .form .btn-link a.custom-link {
    text-decoration: underline !important;
    font-weight: bold;
}

.auth-section:not(.bg-reverse) .btn-link .custom-link:hover {
    color: var(--white) !important;
}

.form-auth-section-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.form-auth-section {
    padding: 15px;
    border: 1px solid #e5e5e5;
    background: #fff;
    border-radius: 5px;
    max-width: 380px;
    width: 100%;
    margin: 10px 0;
}

.form-auth-section-title {
    margin-bottom: 20px;
    justify-content: center;
}

.form-auth-section-label {
    font-size: 11px;
    color: #666;
    margin-bottom: 2px
}

@media screen and (max-width: 1200px) {
    .form-auth-section-row {
        flex-direction: column;
    }

    .form-auth-section-row > div {
        margin-right: auto;
        margin-left: auto;
        max-width: 450px;
    }

    .form-auth-section-row + div {
        justify-content: center !important;
    }
}

@media screen and (max-width: 1024px) {
    .auth-page-container {
        margin-top: 80px;
    }

    .auth-section {
        padding: 30px 0;
    }

    .auth-section .auth-content-container {
        flex-direction: column;
    }

    .auth-section .lg-title {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 600px) {
    .auth-section .auth-content-container .form {
        max-width: 100%;
    }
}
