.auth-form {
    width: 100%;
    max-width: 460px;
    padding: 16px;
    color: #2c2f3a;
}

.auth-form__title {
    color: #121316;
}

.auth-form__gradient {
    background: linear-gradient(180deg, #5d0aa5 31.19%, #000000 100%);
}

.auth-form__image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    z-index: 5;
}

.auth-form__overlay-01 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.5;
}

.auth-form__overlay-02 {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(180deg, #5d0aa5 31.19%, #000000 100%);
    opacity: 0.5;
}

.auth-form__footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    color: #696d80 !important;
}

.auth-form__footer a {
    color: #696d80 !important;
    font-weight: 500;
}

.auth-form__footer a:hover {
    text-decoration: underline !important;
}

.auth-form__separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 16px 0;
    color: #696d80;
    font-weight: 500;
    font-size: 14px;
}

.auth-form__separator::before,
.auth-form__separator::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #f3f4f7;
    margin: 0 10px;
}

.ds-btn {
    height: 39px;
    color: #444755 !important;
    cursor: pointer;
}

.ds-btn:disabled {
    background-color: #f3f4f7;
}

.form-control::placeholder {
    color: #8d92a5 !important;
}

.custom-password-toggle {
    background: transparent !important;
    border: 1px solid #e2e7f1 !important;
    border-left: none !important;
    padding: 6px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: none !important;
}

.custom-password-toggle:focus {
    box-shadow: none !important;
    outline: none !important;
}

.custom-password-toggle:hover {
    background: transparent !important;
}

.custom-password-toggle svg {
    width: 20px;
    height: 20px;
    stroke: #6c757d;
    transition: stroke 0.3s ease-in-out;
}

.custom-password-toggle:hover svg {
    stroke: #770dd3;
}

.email-verification-btn-resend-code {
    color: var(--primary-brand-solid-900) !important;
    font-weight: 500;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}

.email-verification-btn-resend-code:disabled {
    color: #8257e6 !important;
    opacity: 0.7;
    cursor: not-allowed;
}

.email-verification-btn-resend-code:disabled:hover {
    background-color: transparent !important;
    border-color: #8257e6 !important;
}