.ae-login-reg-wrapper {
    background: var(--ae-gradient);
    padding: 80px 112px;
    min-height: 700px;
}

.ae-login-reg-wrap-inner {
    display: flex;
    gap: 15px;
}

.ae-login-reg-content-wrap,
.login-reg-form-wrap {
    width: 50%;
    flex-grow: 1;
}

.ae-login-reg-content-wrap {
    color: white;
}

.login-reg-form-wrap {
    width: 100%;
    max-width: 600px;
    padding: 27px 23px;
    gap: 31px;
    border-radius: 14px;
    background: white;
    box-shadow: 0px 4px 6px -2px rgba(16, 24, 40, 0.05),
                0px 12px 16px -4px rgba(16, 24, 40, 0.1);
}

.login-reg-toggle-wrap {
    padding: 10px;
    border-radius: 8px;
    background: rgba(246, 246, 246, 1);
}

.login-reg-toggle {
    gap: 8px;
    display: flex;
}

.login-trigger,
.reg-trigger {
    background-color: white;
    color: rgba(142, 142, 142, 1);
}

.login-trigger.active,
.login-trigger:hover {
    background-color: var(--ae-global-blue-light);
    color: white;
}

.reg-trigger.active,
.reg-trigger:hover {
    background-color: var(--ae-global-blue-light);
    color: white;
}

#aff-login-form-wrap,
#aff-reg-form-wrap {
    display: none;
}

#aff-login-form-wrap.active,
#aff-reg-form-wrap.active {
    display: block;
}

.login-reg-forms-wrap {
    padding-top: 30px;
}

.forgot-password-link-wrap {
    display: flex;
    justify-content: flex-end;
    padding: 5px;
}

.aff-forgot-password-link {
    font-weight: 500;
    text-align: right;
    cursor: pointer;
}

.aff-forgot-password-link:hover {
    color: var(--ae-global-blue);
}

.sinpup-terms-text {
    text-align: center;
    color: rgba(52, 64, 84, 1);
    font-size: 14px;
    margin-top: 5px;
}

#login-response,
#registeration-response,
#reset-password-response,
#forgot-password-response {
    color: rgba(52, 64, 84, 1);
    text-align: center;
    padding: 1em;
    font-weight: 500;
}

#login-response.error,
#registeration-response.error,
#reset-password-response.error,
#forgot-password-response.error {
    color: red;
}

#login-response.success,
#registeration-response.success,
#reset-password-response.success,
#forgot-password-response.success {
    color: green;
}