.auth-page {
    min-height: 100vh;
    overflow-x: hidden;
    background: linear-gradient(145deg, #f2f6ff 0%, #f7f8fa 50%, #edf3ff 100%);
}

.auth-layout {
    position: relative;
    min-height: 100vh;
    display: grid;
    place-items: start center;
    padding: clamp(64px, 11vh, 118px) 20px 72px;
    isolation: isolate;
}

.auth-backdrop-shape {
    position: fixed;
    z-index: -1;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.auth-backdrop-shape--one {
    width: 440px;
    height: 440px;
    top: -220px;
    left: -140px;
    background: rgba(0, 82, 217, 0.12);
}

.auth-backdrop-shape--two {
    width: 520px;
    height: 520px;
    right: -240px;
    bottom: -280px;
    background: rgba(54, 110, 244, 0.1);
}

.auth-form-area {
    width: min(440px, 100%);
}

.auth-card {
    display: grid;
    gap: 22px;
    padding: 38px 40px 30px;
    border: 1px solid rgba(0, 82, 217, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 20px 56px rgba(15, 34, 67, 0.1);
    backdrop-filter: blur(12px);
}

.auth-card header {
    text-align: center;
}

.auth-brand {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 26px;
    color: var(--hl-text-primary);
    font-size: 18px;
    font-weight: 600;
}

.auth-brand img {
    width: auto;
    max-width: 150px;
    height: 46px;
    object-fit: contain;
}

.auth-brand__mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--hl-brand-color);
    color: #fff;
    font-size: 13px;
}

.auth-card h2 {
    margin: 0;
    font-size: 24px;
    line-height: 1.4;
}

.auth-card header p {
    margin: 8px 0 0;
    color: var(--hl-text-secondary);
}

.auth-captcha-row {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 10px;
}

.auth-captcha-question {
    height: var(--hl-control-height);
    display: grid;
    place-items: center;
    border: 1px solid var(--hl-border-color);
    border-radius: var(--hl-control-radius);
    background: #f3f6fb;
    color: var(--hl-text-primary);
    font-weight: 600;
    letter-spacing: 0.04em;
}

.auth-card__support {
    margin: -4px 0 0;
    color: var(--hl-text-placeholder);
    font-size: 12px;
    text-align: center;
}

.auth-version {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 22px;
    color: var(--hl-text-placeholder);
    font-size: 12px;
    text-align: center;
}

@media (max-width: 560px) {
    .auth-layout {
        padding: 54px 16px 64px;
    }

    .auth-card {
        padding: 30px 24px 26px;
    }

    .auth-captcha-row {
        grid-template-columns: 118px minmax(0, 1fr);
    }
}
