body.auth-login-page {
    margin: 0;
    min-height: 100vh;
    background: #f5f7fb;
    color: #0f172a;
    font-family: inherit;
}

.auth-login-page .auth-topbar {
    background: #ffffff;
    border-bottom: 1px solid #e7edf5;
}

.auth-login-page .auth-topbar-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.auth-login-page .auth-topbar-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #0f172a;
    font-size: 22px;
    font-weight: 900;
}

.auth-login-page .auth-topbar-logo img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    object-fit: cover;
}

.auth-login-page .auth-lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #334155;
    font-size: 14px;
    font-weight: 700;
}

.auth-login-page .auth-main {
    min-height: calc(100vh - 74px);
}

.auth-login-page .auth-split {
    min-height: calc(100vh - 74px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 46%);
}

.auth-login-page .auth-pane {
    min-width: 0;
}

.auth-login-page .auth-form-pane {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    background: #f8fafc;
}

.auth-login-page .auth-form-wrap {
    width: 100%;
    max-width: 460px;
}

.auth-login-page .auth-form-head {
    margin-bottom: 26px;
}

.auth-login-page .auth-form-head h1 {
    margin: 0 0 8px;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
    color: #0f172a;
}

.auth-login-page .auth-form-head p {
    margin: 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.9;
}

.auth-login-page .auth-alert {
    border: 1px solid #fecaca;
    background: #fff1f2;
    color: #b91c1c;
    border-radius: 14px;
    padding: 13px 15px;
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 700;
}

.auth-login-page .auth-form {
    display: block;
}

.auth-login-page .auth-field {
    margin-bottom: 16px;
}

.auth-login-page .auth-field label {
    display: block;
    margin-bottom: 8px;
    color: #334155;
    font-size: 14px;
    font-weight: 800;
}

.auth-login-page .auth-input,
.auth-login-page .auth-password-wrap {
    width: 100%;
    min-height: 56px;
    border: 1px solid #d7e0ea;
    border-radius: 16px;
    background: #fff;
    box-shadow: none;
    transition: .2s ease;
}

.auth-login-page .auth-input {
    padding: 0 16px;
    color: #0f172a;
    font-size: 15px;
    outline: none;
}

.auth-login-page .auth-input::placeholder {
    color: #94a3b8;
}

.auth-login-page .auth-input:focus,
.auth-login-page .auth-password-wrap:focus-within {
    border-color: #FE9901;
    box-shadow: 0 0 0 4px rgba(29, 103, 255, 0.10);
}

.auth-login-page .auth-password-wrap {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.auth-login-page .auth-input-password {
    width: 100%;
    min-height: 54px;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0 48px 0 16px;
    box-shadow: none !important;
}

html[dir="rtl"] .auth-login-page .auth-input-password {
    padding: 0 16px 0 48px;
}

.auth-login-page .auth-password-wrap .fa-eye,
.auth-login-page .auth-password-wrap .fa-eye-slash {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    inset-inline-end: 16px;
    right: auto;
    color: #64748b;
    font-size: 18px;
    cursor: pointer;
}

.auth-login-page .auth-links-row {
    display: flex;
    justify-content: flex-start;
    margin: 8px 0 18px;
}

.auth-login-page .auth-link {
    color: #FE9901;
    text-decoration: none;
    font-weight: 800;
}

.auth-login-page .auth-link:hover {
    text-decoration: underline;
}

.auth-login-page .auth-link-small {
    font-size: 14px;
}

.auth-login-page .auth-primary-btn {
    width: 100%;
    min-height: 58px;
    border: 0;
    border-radius: 999px;
    background: #FE9901;
    color: #fff;
    font-size: 17px;
    font-weight: 900;
    transition: .2s ease;
}

.auth-login-page .auth-primary-btn:hover {
    background: #1557df;
}

.auth-login-page .auth-bottom-links {
    margin-top: 22px;
    text-align: center;
}

.auth-login-page .auth-bottom-links p {
    margin: 0 0 14px;
    color: #475569;
    font-size: 15px;
    line-height: 1.9;
}

.auth-login-page .auth-guest-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid #d7e0ea;
    background: #fff;
    color: #0f172a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    transition: .2s ease;
}

.auth-login-page .auth-guest-link:hover {
    border-color: #FE9901;
    color: #FE9901;
    background: #eff6ff;
}

.auth-login-page .auth-showcase-pane {
    background: #eef3fb;
    border-inline-start: 1px solid #e3ebf5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 30px;
}

.auth-login-page .auth-showcase-inner {
    width: 100%;
    max-width: 460px;
    text-align: center;
}

.auth-login-page .auth-showcase-brand {
    margin-bottom: 26px;
    color: #FE9901;
    font-size: 42px;
    font-weight: 1000;
    letter-spacing: 1px;
}

.auth-login-page .auth-phone-mock {
    width: 260px;
    height: 430px;
    margin: 0 auto 28px;
    border-radius: 42px;
    background: linear-gradient(180deg, #dfe7ef 0%, #cdd6df 100%);
    padding: 18px 14px;
    position: relative;
    box-shadow: inset 0 0 0 2px rgba(255,255,255,.7);
}

.auth-login-page .auth-phone-notch {
    width: 120px;
    height: 18px;
    background: #c5ced8;
    border-radius: 0 0 16px 16px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.auth-login-page .auth-phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.auth-login-page .auth-phone-screen img {
    width: 140px;
    height: 140px;
    border-radius: 18px;
    object-fit: cover;
}

.auth-login-page .auth-showcase-copy h2 {
    margin: 0 0 12px;
    color: #0f172a;
    font-size: 38px;
    line-height: 1.35;
    font-weight: 900;
}

.auth-login-page .auth-showcase-copy p {
    margin: 0 0 22px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.9;
}

.auth-login-page .auth-showcase-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.auth-login-page .auth-step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 14px;
    background: rgba(255,255,255,.7);
    color: #0f172a;
    font-size: 15px;
    font-weight: 700;
}

.auth-login-page .auth-step-number {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: #fff;
    color: #FE9901;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex-shrink: 0;
}

@media (max-width: 1199.98px) {
    .auth-login-page .auth-split {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 42%);
    }

    .auth-login-page .auth-form-head h1 {
        font-size: 36px;
    }

    .auth-login-page .auth-showcase-copy h2 {
        font-size: 31px;
    }

    .auth-login-page .auth-phone-mock {
        width: 230px;
        height: 380px;
    }
}

@media (max-width: 991.98px) {
    .auth-login-page .auth-split {
        grid-template-columns: 1fr;
    }

    .auth-login-page .auth-showcase-pane {
        display: none;
    }

    .auth-login-page .auth-form-pane {
        min-height: calc(100vh - 74px);
        padding: 32px 18px;
    }

    .auth-login-page .auth-form-wrap {
        max-width: 520px;
    }

    .auth-login-page .auth-form-head h1 {
        font-size: 32px;
    }
}

@media (max-width: 575.98px) {
    .auth-login-page .auth-topbar-inner {
        min-height: 66px;
    }

    .auth-login-page .auth-topbar-logo {
        font-size: 18px;
    }

    .auth-login-page .auth-topbar-logo img {
        width: 36px;
        height: 36px;
    }

    .auth-login-page .auth-form-pane {
        padding: 24px 14px;
    }

    .auth-login-page .auth-form-head h1 {
        font-size: 28px;
    }

    .auth-login-page .auth-form-head p,
    .auth-login-page .auth-bottom-links p {
        font-size: 14px;
    }

    .auth-login-page .auth-input,
    .auth-login-page .auth-password-wrap {
        min-height: 52px;
        border-radius: 14px;
    }

    .auth-login-page .auth-primary-btn {
        min-height: 54px;
        font-size: 16px;
    }

    .auth-login-page .auth-guest-link {
        width: 100%;
    }
}