* { box-sizing: border-box; }

:root {
    --bg: #eef2fb;
    --bg-2: #e7edf8;
    --ink-800: #0d1a38;
    --ink-700: #23355f;
    --ink-600: #44507a;
    --ink-500: #7b85a8;
    --ink-400: #a7b0cb;
    --line: rgba(20, 40, 90, 0.08);
    --brand: #3b6eff;
    --brand-2: #6aa2ff;
    --brand-3: #8ab6ff;
    --brand-soft: rgba(79, 140, 255, 0.14);
    --brand-soft-2: rgba(79, 140, 255, 0.22);
    --font-number: Arial, Helvetica, "Helvetica Neue", sans-serif;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family: "Inter", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
    color: var(--ink-800);
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
}

.stage {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    min-height: 100vh;
}

.left {
    position: relative;
    overflow: hidden;
    padding: 48px 56px;
    color: white;
    display: flex;
    flex-direction: column;
    background:
            radial-gradient(820px 620px at 24% 18%, rgba(122, 184, 255, 0.78) 0%, transparent 60%),
            radial-gradient(700px 520px at 82% 82%, rgba(59, 110, 255, 0.72) 0%, transparent 65%),
            linear-gradient(135deg, #3b6eff 0%, #4f8cff 48%, #8ab6ff 100%);
}

.left::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
            linear-gradient(to right, rgba(255,255,255,0.06) 1px, transparent 1px),
            linear-gradient(to bottom, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
    pointer-events: none;
}

.left::after {
    content: "";
    position: absolute;
    right: -200px;
    top: -200px;
    width: 720px;
    height: 720px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.12);
    box-shadow: inset 0 0 0 60px rgba(255,255,255,0.04);
    pointer-events: none;
}

.brand {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-ico {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.24);
    border-radius: 12px;
    backdrop-filter: blur(20px);
}

.brand-ico svg {
    width: 100%;
    height: 100%;
    display: block;
}

.brand-name {
    font-family: "Manrope", sans-serif;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand-sub {
    margin-top: 2px;
    font-size: 11px;
    opacity: 0.74;
    letter-spacing: 0.1em;
    font-family: "JetBrains Mono", monospace;
}

.hero {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 20px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    font-size: 12px;
    letter-spacing: 0.18em;
}

.hero-eye-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #dbe8ff;
    box-shadow: 0 0 10px rgba(219, 232, 255, 0.9);
}

.hero-title {
    margin-top: 18px;
    font-family: "Manrope", sans-serif;
    font-size: 64px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #dbe8ff 72%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title .accent {
    background: linear-gradient(135deg, #ffffff 0%, #8ab6ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    margin-top: 14px;
    max-width: 480px;
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.88;
}

.trophy {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-58%);
    width: 380px;
    height: 480px;
    opacity: 0.96;
    filter: drop-shadow(0 30px 60px rgba(10, 36, 112, 0.3));
    pointer-events: none;
}

.flags {
    position: absolute;
    left: 56px;
    right: 56px;
    bottom: 130px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

.flag-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px 6px 6px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 999px;
    backdrop-filter: blur(12px);
    font-size: 11px;
    letter-spacing: 0.06em;
}

.flag-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 9px;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #8ab6ff, #3b6eff);
}

.hot {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding: 18px 20px;
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    gap: 18px;
}

.hot-lb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    padding: 4px 10px;
    background: linear-gradient(135deg, #dbe8ff, #8ab6ff);
    color: #1f3b85;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.hot-match {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
}

.hot-team {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
}

.hot-circle {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #8ab6ff, #3b6eff);
}

.hot-circle--alt {
    background: linear-gradient(135deg, #6aa2ff, #23355f);
}

.hot-vs,
.hot-time {
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    opacity: 0.78;
}

.right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
    background:
            radial-gradient(900px 700px at 70% 30%, #f0f6fc 0%, transparent 70%),
            linear-gradient(180deg, #f3f7fc 0%, #eaf2fb 100%);
}

.right::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
            linear-gradient(to right, rgba(255,255,255,0.58) 1px, transparent 1px),
            linear-gradient(to bottom, rgba(255,255,255,0.58) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, #000 35%, transparent 90%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 35%, transparent 90%);
    pointer-events: none;
}

.top-corner {
    position: absolute;
    right: 32px;
    top: 32px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--ink-500);
}

.login-lang-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(210, 222, 238, 0.7);
    border-radius: 999px;
    backdrop-filter: blur(10px);
}

.login-lang-current {
    color: var(--ink-600);
    font-size: 12px;
    font-weight: 600;
}

.login-card {
    position: relative;
    width: 100%;
    max-width: 440px;
    padding: 44px 44px 36px;
    background: rgba(255,255,255,0.78);
    backdrop-filter: blur(30px) saturate(170%);
    -webkit-backdrop-filter: blur(30px) saturate(170%);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 24px;
    box-shadow:
            0 30px 60px rgba(60, 90, 130, 0.1),
            0 4px 14px rgba(60, 90, 130, 0.05),
            inset 0 1px 0 rgba(255,255,255,0.95);
}

.login-head {
    text-align: center;
    margin-bottom: 28px;
}

.login-title {
    font-family: "Manrope", sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--ink-800);
}

.login-sub {
    margin-top: 8px;
    font-size: 13px;
    color: var(--ink-500);
}

.login-mode {
    margin-bottom: 14px;
    color: var(--ink-800);
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    line-height: 1.2;
}

.field-grp {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.field {
    position: relative;
    display: flex;
    align-items: center;
    height: 48px;
    padding: 0 14px;
    background: white;
    border: 1px solid rgba(210, 222, 238, 0.72);
    border-radius: 12px;
    transition: all .15s;
}

.field:focus-within {
    border-color: var(--brand-3);
    box-shadow: 0 0 0 4px rgba(79, 140, 255, 0.16);
}

.field svg {
    color: var(--ink-400);
    flex-shrink: 0;
}

.field input,
.field select {
    flex: 1;
    min-width: 0;
    height: 100%;
    margin-left: 10px;
    border: none;
    outline: none;
    background: transparent;
    font: inherit;
    font-size: 14px;
    color: var(--ink-800);
}

.field select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.field input::placeholder {
    color: var(--ink-400);
}

.field-suffix {
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid rgba(210, 222, 238, 0.7);
    font-size: 12px;
    color: var(--brand);
    cursor: pointer;
    white-space: nowrap;
}

.captcha-img {
    width: 90px;
    height: 32px;
    margin-left: 10px;
    display: block;
    flex: 0 0 auto;
    border-radius: 6px;
    border: 1px solid rgba(210, 222, 238, 0.7);
    background: #eef5ff;
    object-fit: cover;
    cursor: pointer;
    user-select: none;
}

.question-select-field {
    position: relative;
}

.question-select-field::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid var(--ink-800);
    border-bottom: 1.5px solid var(--ink-800);
    transform: translateY(-62%) rotate(45deg);
    pointer-events: none;
}

.question-select-field select {
    padding-right: 38px;
}

.question-select-trigger {
    display: none;
}

.mobile-question-sheet[hidden] {
    display: none !important;
}

.mobile-question-sheet {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.mobile-question-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 18, 42, 0.34);
    opacity: 0;
    transition: opacity .18s ease;
}

.mobile-question-panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 70vh;
    padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
    border-radius: 22px 22px 0 0;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -24px 52px rgba(20, 40, 90, 0.22);
    transform: translateY(100%);
    transition: transform .22s ease;
}

.mobile-question-sheet.is-open .mobile-question-backdrop { opacity: 1; }
.mobile-question-sheet.is-open .mobile-question-panel { transform: translateY(0); }

.mobile-question-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    height: 36px;
    margin-bottom: 8px;
}

.mobile-question-title {
    color: var(--ink-800);
    font-size: 15px;
    font-weight: 700;
}

.mobile-question-close {
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 999px;
    background: rgba(235, 242, 252, 0.92);
    color: var(--ink-600);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
}

.mobile-question-list {
    max-height: min(52vh, 420px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 4px 0;
}

.mobile-question-option {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: var(--ink-700);
    font: inherit;
    font-size: 14px;
    text-align: left;
    cursor: pointer;
}

.mobile-question-option + .mobile-question-option { margin-top: 4px; }

.mobile-question-option.is-selected {
    background: linear-gradient(135deg, #6aa2ff 0%, #3b6eff 100%);
    color: white;
    font-weight: 700;
}

.auth-view[hidden],
.register-step[hidden] {
    display: none !important;
}

.auth-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    margin-top: 14px;
    font-size: 14px;
}

.auth-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--brand);
    font: inherit;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
}

.auth-link-btn:hover { text-decoration: underline; }

.auth-back {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 12px;
}

.auth-back.split { justify-content: space-between; }

.security-note {
    min-height: 40px;
    margin-bottom: 16px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(235, 242, 252, 0.76);
    border: 1px solid rgba(210, 222, 238, 0.58);
    color: var(--ink-500);
    font-size: 12px;
    line-height: 1.6;
}

.link { color: var(--brand); cursor: pointer; }
.link:hover { text-decoration: underline; }

.btn-login {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 48px;
    margin-top: 22px;
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 12px;
    background: linear-gradient(135deg, #6aa2ff 0%, #3b6eff 100%);
    color: white;
    font: inherit;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.06em;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(59, 110, 255, 0.28), inset 0 1px 0 rgba(255,255,255,0.34);
    transition: all .18s;
}

.btn-login::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.22), transparent 50%);
    pointer-events: none;
}

.btn-login:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(59, 110, 255, 0.34), inset 0 1px 0 rgba(255,255,255,0.45);
}

.foot {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 24px;
    text-align: center;
    font-size: 11px;
    color: var(--ink-400);
    letter-spacing: 0.05em;
    font-family: "JetBrains Mono", monospace;
}

@media (max-width: 920px) {
    html, body {
        min-height: 100vh;
        min-height: 100dvh;
        background: linear-gradient(180deg, #f3f7fc 0%, #eaf2fb 100%);
    }

    body { overflow: auto; overflow-x: hidden; }

    .stage {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        min-height: 100dvh;
        width: 100%;
        overflow-x: hidden;
        background: linear-gradient(180deg, #f3f7fc 0%, #eaf2fb 100%);
    }

    .left {
        width: 100%;
        min-width: 0;
        min-height: 300px;
        padding: 22px 20px 20px;
        border-bottom-left-radius: 28px;
        border-bottom-right-radius: 28px;
    }

    .right {
        flex: 1;
        width: 100%;
        min-width: 0;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 14px 20px 8px;
    }

    .login-card {
        max-width: 100%;
        width: 100%;
        padding: 32px 22px 28px;
        border-radius: 22px;
        box-shadow: none;
    }

    .top-corner {
        position: static;
        align-self: flex-end;
        width: 100%;
        justify-content: flex-end;
        margin-bottom: 14px;
    }

    .brand { gap: 12px; }
    .brand-ico { width: 40px; height: 40px; border-radius: 11px; }
    .brand-name { font-size: 24px; }
    .brand-sub { font-size: 10px; letter-spacing: 0.08em; }
    .hero { flex: none; margin-top: 18px; }
    .hero-title { margin-top: 14px; font-size: 38px; line-height: 1.08; }
    .hero-sub { margin-top: 12px; max-width: none; font-size: 13px; line-height: 1.65; }
    .trophy, .flags, .hot { display: none; }
    .login-head { margin-bottom: 24px; }
    .login-title { font-size: 22px; }
    .login-sub { margin-top: 7px; font-size: 12px; line-height: 1.6; }
    .field-grp { gap: 14px; }
    .field { height: 50px; }
    .captcha-img { width: 82px; height: 30px; }
    .btn-login { height: 50px; margin-top: 20px; }
    .foot { position: static; margin-top: 8px; padding-bottom: 0; line-height: 1.6; }
}

@media (max-width: 640px) {
    .left {
        min-height: 0;
        padding: 18px 16px 14px;
        border-bottom-left-radius: 24px;
        border-bottom-right-radius: 24px;
    }

    .brand { gap: 10px; }
    .brand-ico { width: 36px; height: 36px; border-radius: 10px; }
    .brand-name { font-size: 21px; }
    .brand-sub { display: none; }
    .hero { margin-top: 14px; }
    .hero-title { margin-top: 12px; font-size: 31px; }
    .hero-sub { margin-top: 10px; font-size: 12px; line-height: 1.55; }
    .right { padding: 12px 16px 4px; }
    .top-corner { margin-bottom: 12px; }

    .login-lang-trigger { padding: 6px 10px; }
    .login-lang-current { max-width: 72px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

    .login-card { padding: 24px 16px 22px; border-radius: 18px; }
    .login-head { text-align: left; margin-bottom: 20px; }
    .login-title { font-size: 20px; }
    .login-sub { font-size: 12px; }
    .login-mode { margin-bottom: 12px; font-size: 14px; }
    .field { height: 48px; padding: 0 12px; }
    .field input { margin-left: 8px; font-size: 14px; }
    .field-suffix { margin-left: 8px; padding-left: 8px; font-size: 11px; }
    .captcha-img { width: 74px; margin-left: 8px; }
    .btn-login { height: 48px; font-size: 14px; }
    .foot { font-size: 9px; letter-spacing: 0.01em; line-height: 1.4; margin-top: 6px; white-space: nowrap; }
}

/* ─── login02-page overrides ─── */
.login02-page { --login-left-ratio: 60%; }

.login02-page .stage {
    grid-template-columns: minmax(620px, var(--login-left-ratio)) minmax(420px, 1fr);
}

.login02-page .left {
    min-height: 100vh;
    padding: 0;
    background:
            linear-gradient(180deg, rgba(3,8,16,0.16) 0%, rgba(3,8,16,0.04) 32%, rgba(3,8,16,0.1) 100%),
            url("dlb_bg.jpg") center center / cover no-repeat;
}

.login02-page .left::before,
.login02-page .left::after { display: none; }

.login02-page .left > .brand,
.login02-page .left > .hero,
.login02-page .left > .trophy,
.login02-page .left > .flags,
.login02-page .left > .hot { display: none !important; }

.worldcup-logo {
    position: absolute;
    z-index: 3;
    top: clamp(18px, 3.2vw, 44px);
    left: clamp(20px, 3.4vw, 52px);
    width: clamp(190px, 20vw, 320px);
    max-width: 34%;
    height: auto;
    filter: drop-shadow(0 8px 4px rgba(0,0,0,0.42));
    pointer-events: none;
}

.worldcup-players {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    width: auto;
    max-width: 52%;
    height: min(74vh, 760px);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.login02-page .right {
    min-height: 100vh;
    padding: 48px clamp(42px, 5vw, 92px);
    background:
            radial-gradient(720px 520px at 55% 38%, rgba(255,255,255,0.86) 0%, rgba(255,255,255,0.22) 56%, transparent 78%),
            linear-gradient(180deg, #f3f8ff 0%, #e9f1fb 100%);
}

.login02-page .right::before {
    background-image:
            linear-gradient(to right, rgba(255,255,255,0.68) 1px, transparent 1px),
            linear-gradient(to bottom, rgba(255,255,255,0.68) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.92;
}

.login02-page .top-corner { right: 34px; top: 30px; }

.login02-page .login-card {
    max-width: 400px;
    padding: 42px 42px 34px;
    border-radius: 22px;
    background: rgba(255,255,255,0.78);
    box-shadow:
            0 26px 58px rgba(83,111,151,0.12),
            0 2px 8px rgba(83,111,151,0.04),
            inset 0 1px 0 rgba(255,255,255,0.96);
}

.login02-page .login-title { font-size: 22px; }
.login02-page .foot { bottom: 30px; color: #b7c2d8; }

@media (max-width: 1080px) {
    .login02-page .stage { grid-template-columns: 54% 46%; }
    .worldcup-logo { max-width: 38%; }
    .worldcup-players { max-width: 52%; height: min(72vh, 680px); }
}

@media (max-width: 920px) {
    body.login02-page { overflow: auto; }
    body.login02-page.question-sheet-open { overflow: hidden; }

    .login02-page .stage {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        min-height: 100dvh;
    }

    .login02-page .left {
        min-height: 240px;
        height: 240px;
        border-radius: 0 0 26px 26px;
        background-position: center top;
    }

    .worldcup-logo {
        top: 10px;
        left: 10px;
        width: min(23vw, 112px);
        max-width: none;
    }

    .worldcup-players {
        top: 50%;
        max-width: 52%;
        height: 78%;
    }

    .login02-page .right {
        min-height: 58vh;
        align-items: stretch;
        justify-content: flex-start;
        padding: 14px 18px 16px;
    }

    .login02-page .top-corner { position: static; justify-content: flex-end; margin-bottom: 12px; }
    .login02-page .login-card { max-width: none; width: 100%; padding: 28px 20px 24px; border-radius: 20px; }

    .login02-page .question-select-field { height: 44px; padding: 0 12px; border-radius: 12px; }
    .login02-page .question-select-field svg { width: 15px; height: 15px; }

    .login02-page .question-select-field select {
        position: absolute;
        opacity: 0;
        pointer-events: none;
        width: 1px;
        height: 1px;
        margin: 0;
    }

    .login02-page .question-select-trigger {
        display: block;
        flex: 1;
        min-width: 0;
        height: 44px;
        margin-left: 8px;
        padding: 0 34px 0 0;
        border: 0;
        background: transparent;
        color: var(--ink-800);
        font: inherit;
        font-size: 16px;
        line-height: 44px;
        text-align: left;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .login02-page .question-select-field::after { right: 16px; }
    .login02-page .foot { position: static; margin-top: 12px; padding-bottom: 0; }
}

@media (max-width: 520px) {
    .login02-page .left { min-height: 240px; height: 240px; }
    .worldcup-logo { width: min(25vw, 96px); }
    .worldcup-players { max-width: 54%; height: 82%; }
    .login02-page .right { padding: 12px 14px 14px; }
    .login02-page .login-head { text-align: center; }
    .login02-page .foot { white-space: normal; }
}
