/* ============================================================
   Kinoteatr.kg — Auth pages
   signup / login / password reset

   Страница регистрации:
   - мини-лендинг
   - форма справа
   - без рекламы
   - dark/light support
   - компактный поиск на auth-страницах скрыт
   ============================================================ */

/* ============================================================
   CLEAN AUTH PAGE TOP SPACING
   Убираем компактный поиск и лишний верхний отступ
   ============================================================ */

body:has(.kt-auth-page) .kt-compact-search-section,
body:has(.kt-auth-page) .kt-compact-search,
body:has(.kt-auth-page) .kinoteatr-compact-search,
body:has(.kt-auth-page) .compact-search-section,
body:has(.kt-auth-page) .compact-search,
body:has(.kt-auth-page) .site-compact-search,
body:has(.kt-auth-page) .inner-search-section,
body:has(.kt-auth-page) .search-under-navbar,
body:has(.kt-auth-page) .top-search-section,
body:has(.kt-auth-page) .navbar-search-section,
body:has(.kt-auth-page) .kt-search-line,
body:has(.kt-auth-page) .kt-search-strip {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
}

body:has(.kt-auth-page) .breadcrumb,
body:has(.kt-auth-page) .breadcrumbs,
body:has(.kt-auth-page) .page-breadcrumbs {
    display: none !important;
}

body:has(.kt-auth-page) main,
body:has(.kt-auth-page) .main,
body:has(.kt-auth-page) .main-content,
body:has(.kt-auth-page) .content-wrapper,
body:has(.kt-auth-page) .wrap,
body:has(.kt-auth-page) .site-wrapper {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* ============================================================
   PAGE
   ============================================================ */

.kt-auth-page {
    padding: 0 0 72px;
    overflow-x: hidden;
}

/* ============================================================
   HERO
   ============================================================ */

.kt-auth-hero {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    margin-top: 18px;
    border-radius: var(--kt-radius, 28px);
    background-size: cover;
    background-position: center;
    border: 1px solid var(--kt-border, rgba(255, 255, 255, 0.10));
    box-shadow: var(--kt-shadow, 0 20px 60px rgba(0, 0, 0, 0.35));
}

.kt-auth-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(5, 6, 10, 0.88) 0%, rgba(5, 6, 10, 0.74) 50%, rgba(5, 6, 10, 0.48) 100%),
        linear-gradient(180deg, rgba(5, 6, 10, 0.10) 0%, rgba(5, 6, 10, 0.82) 100%),
        radial-gradient(circle at 18% 20%, rgba(229, 9, 20, 0.28), transparent 36%);
}

.kt-auth-grid {
    position: relative;
    z-index: 2;
    min-height: 680px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 460px;
    gap: 38px;
    align-items: center;
    padding: clamp(26px, 4vw, 54px);
}

.kt-auth-left {
    max-width: 860px;
}

.kt-auth-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--kt-red-hover, #ff2530);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.kt-auth-kicker i {
    color: var(--kt-red-hover, #ff2530);
}

.kt-auth-left h1 {
    margin: 0 0 20px;
    color: #fff;
    font-size: clamp(2.5rem, 5vw, 5.2rem);
    font-weight: 950;
    line-height: 0.98;
    letter-spacing: -0.055em;
    text-shadow: 0 18px 48px rgba(0, 0, 0, 0.48);
}

.kt-auth-left p {
    max-width: 760px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.08rem;
    line-height: 1.75;
    text-shadow: 0 10px 34px rgba(0, 0, 0, 0.36);
}

/* ============================================================
   BADGES / BENEFITS
   ============================================================ */

.kt-auth-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.kt-auth-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 15px;
    color: #fff;
    font-weight: 900;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
}

.kt-auth-badges span:nth-child(3) {
    background: rgba(229, 9, 20, 0.24);
    border-color: rgba(229, 9, 20, 0.38);
    box-shadow: 0 0 24px rgba(229, 9, 20, 0.18);
}

.kt-auth-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 920px;
}

.kt-auth-benefit {
    min-height: 122px;
    padding: 18px;
    border-radius: 22px;
    background:
        radial-gradient(circle at top left, rgba(229, 9, 20, 0.16), transparent 40%),
        rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
}

.kt-auth-benefit strong {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 1rem;
    font-weight: 950;
}

.kt-auth-benefit span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    line-height: 1.55;
}

/* ============================================================
   FORM CARD
   ============================================================ */

.kt-auth-card-wrap {
    width: 100%;
}

.kt-auth-card {
    padding: 26px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 10% 0%, rgba(229, 9, 20, 0.16), transparent 34%),
        rgba(13, 16, 26, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.46),
        0 0 44px rgba(229, 9, 20, 0.12);
    backdrop-filter: blur(18px);
}

.kt-auth-card-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.kt-auth-card-icon {
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--kt-red, #e50914), #85020a);
    box-shadow: 0 16px 38px rgba(229, 9, 20, 0.32);
}

.kt-auth-card-head h2 {
    margin: 0 0 4px;
    color: #fff;
    font-size: 1.85rem;
    font-weight: 950;
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.kt-auth-card-head p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.94rem;
    line-height: 1.4;
}

.kt-auth-form .form-group {
    margin-bottom: 16px;
}

.kt-auth-label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.9rem;
    font-weight: 900;
}

.kt-auth-input {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    color: #fff;
    font-weight: 800;
    outline: none;
    border-radius: 16px;
    background: rgba(5, 8, 18, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: none;
    transition: all 0.22s ease;
}

.kt-auth-input::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.kt-auth-input:focus {
    color: #fff;
    background: rgba(5, 8, 18, 0.92);
    border-color: rgba(229, 9, 20, 0.68);
    box-shadow:
        0 0 0 4px rgba(229, 9, 20, 0.14),
        0 0 28px rgba(229, 9, 20, 0.14);
}

.kt-auth-error {
    margin-top: 7px;
    color: #ff7b82;
    font-size: 0.86rem;
    font-weight: 800;
}

.kt-auth-mail-note {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    margin: 18px 0;
    padding: 14px;
    border-radius: 18px;
    background: rgba(229, 9, 20, 0.12);
    border: 1px solid rgba(229, 9, 20, 0.22);
}

.kt-auth-mail-note i {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 12px;
    background: rgba(229, 9, 20, 0.78);
}

.kt-auth-mail-note span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    line-height: 1.55;
}

.kt-auth-submit-wrap {
    margin-top: 18px;
}

.kt-auth-submit {
    width: 100%;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    font-weight: 950;
    border: none;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--kt-red, #e50914), #8d050e);
    box-shadow: 0 18px 42px rgba(229, 9, 20, 0.34);
    transition: all 0.24s ease;
}

.kt-auth-submit:hover {
    transform: translateY(-2px);
    color: #fff;
    background: linear-gradient(135deg, var(--kt-red-hover, #ff2530), #b50712);
    box-shadow: 0 24px 54px rgba(229, 9, 20, 0.42);
}

.kt-auth-bottom-link {
    margin-top: 18px;
    text-align: center;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.95rem;
    font-weight: 800;
}

.kt-auth-bottom-link a {
    color: #fff;
    font-weight: 950;
    text-decoration: none;
}

.kt-auth-bottom-link a:hover {
    color: var(--kt-red-hover, #ff2530);
}

/* ============================================================
   SECTIONS
   ============================================================ */

.kt-auth-steps-section,
.kt-auth-random-section,
.kt-auth-final-cta {
    margin-top: 58px;
}

.kt-auth-section-head {
    margin-bottom: 28px;
}

.kt-auth-section-head h2 {
    margin: 0 0 12px;
    color: var(--kt-text, #fff);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 950;
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.kt-auth-section-head p {
    max-width: 760px;
    margin: 0;
    color: var(--kt-muted, rgba(255, 255, 255, 0.68));
    font-size: 1rem;
    line-height: 1.7;
}

/* ============================================================
   STEPS
   ============================================================ */

.kt-auth-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.kt-auth-step-card {
    padding: 24px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 10% 0%, rgba(229, 9, 20, 0.14), transparent 34%),
        var(--kt-surface, rgba(18, 20, 30, 0.82));
    border: 1px solid var(--kt-border, rgba(255, 255, 255, 0.10));
    box-shadow: var(--kt-shadow, 0 16px 42px rgba(0, 0, 0, 0.22));
}

.kt-auth-step-number {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 950;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--kt-red, #e50914), #8d050e);
    box-shadow: 0 14px 30px rgba(229, 9, 20, 0.26);
}

.kt-auth-step-card h3 {
    margin: 0 0 10px;
    color: var(--kt-text, #fff);
    font-size: 1.16rem;
    font-weight: 950;
    line-height: 1.25;
}

.kt-auth-step-card p {
    margin: 0;
    color: var(--kt-muted, rgba(255, 255, 255, 0.68));
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ============================================================
   RANDOM FILMS
   ============================================================ */

.kt-auth-random-carousel .owl-stage-outer {
    overflow: hidden;
    border-radius: 22px;
}

.kt-auth-film-slide {
    padding: 8px;
}

.kt-auth-film-card {
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    text-decoration: none;
    border-radius: 22px;
    background: var(--kt-surface-solid, rgba(15, 17, 26, 0.95));
    border: 1px solid var(--kt-border, rgba(255, 255, 255, 0.10));
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.24),
        0 0 0 rgba(229, 9, 20, 0);
    transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease;
}

.kt-auth-film-card:hover {
    transform: translateY(-8px);
    border-color: rgba(229, 9, 20, 0.62);
    box-shadow:
        0 26px 70px rgba(0, 0, 0, 0.34),
        0 0 28px rgba(229, 9, 20, 0.26),
        0 0 66px rgba(229, 9, 20, 0.14);
}

.kt-auth-film-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #050814;
}

.kt-auth-film-media img {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.34s ease, opacity 0.34s ease;
}

.kt-auth-film-card:hover .kt-auth-film-media img {
    transform: scale(1.04);
    opacity: 0.88;
}

.kt-auth-film-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.18) 48%, rgba(0, 0, 0, 0.62) 100%);
}

.kt-auth-film-play {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 3;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--kt-red, #e50914), #85020a);
    box-shadow: 0 16px 42px rgba(229, 9, 20, 0.38);
}

.kt-auth-film-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.kt-auth-film-badges span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    color: #111827;
    font-size: 0.78rem;
    font-weight: 950;
    line-height: 1;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
}

.kt-auth-film-badges span.is-red {
    color: #fff;
    background: var(--kt-red, #e50914);
    box-shadow: 0 8px 20px rgba(229, 9, 20, 0.24);
}

.kt-auth-film-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 20px 18px 18px;
}

.kt-auth-film-body h3 {
    margin: 0 0 10px;
    color: var(--kt-text, #fff);
    font-size: 1.1rem;
    font-weight: 950;
    line-height: 1.35;
}

.kt-auth-film-body p {
    flex: 1 1 auto;
    margin: 0 0 14px;
    color: var(--kt-muted, rgba(255, 255, 255, 0.68));
    font-size: 0.94rem;
    line-height: 1.6;
}

.kt-auth-film-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px 16px;
    color: var(--kt-muted, rgba(255, 255, 255, 0.68));
    font-size: 0.9rem;
    font-weight: 800;
}

.kt-auth-random-carousel .owl-nav {
    margin-top: 18px !important;
}

.kt-auth-random-carousel .owl-nav button {
    width: 42px;
    height: 42px;
    color: #fff !important;
    border-radius: 999px !important;
    background: rgba(229, 9, 20, 0.88) !important;
    box-shadow: 0 10px 28px rgba(229, 9, 20, 0.28);
}

.kt-auth-random-carousel .owl-dots {
    margin-top: 12px !important;
}

.kt-auth-random-carousel .owl-dots .owl-dot span {
    background: rgba(255, 255, 255, 0.26) !important;
}

.kt-auth-random-carousel .owl-dots .owl-dot.active span {
    background: var(--kt-red, #e50914) !important;
}

/* ============================================================
   FINAL CTA
   ============================================================ */

.kt-auth-final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 34px;
    border-radius: var(--kt-radius, 28px);
    background:
        radial-gradient(circle at 10% 0%, rgba(229, 9, 20, 0.16), transparent 34%),
        radial-gradient(circle at 100% 0%, rgba(103, 232, 249, 0.10), transparent 30%),
        var(--kt-surface, rgba(18, 20, 30, 0.82));
    border: 1px solid var(--kt-border, rgba(255, 255, 255, 0.10));
    box-shadow: var(--kt-shadow, 0 16px 42px rgba(0, 0, 0, 0.22));
}

.kt-auth-final-cta h2 {
    margin: 0 0 10px;
    color: var(--kt-text, #fff);
    font-size: clamp(1.7rem, 3vw, 2.9rem);
    font-weight: 950;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.kt-auth-final-cta p {
    max-width: 760px;
    margin: 0;
    color: var(--kt-muted, rgba(255, 255, 255, 0.68));
    line-height: 1.65;
}

.kt-auth-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    flex-shrink: 0;
}

.kt-auth-final-primary,
.kt-auth-final-secondary {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    font-weight: 950;
    text-decoration: none;
    border-radius: 999px;
    transition: all 0.22s ease;
}

.kt-auth-final-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--kt-red, #e50914), #8d050e);
    box-shadow: 0 16px 36px rgba(229, 9, 20, 0.30);
}

.kt-auth-final-secondary {
    color: var(--kt-text, #fff);
    background: var(--kt-surface-light, rgba(255, 255, 255, 0.06));
    border: 1px solid var(--kt-border, rgba(255, 255, 255, 0.10));
}

.kt-auth-final-primary:hover,
.kt-auth-final-secondary:hover {
    color: #fff;
    transform: translateY(-2px);
}

/* ============================================================
   LIGHT THEME
   ============================================================ */

.kt-theme-light .kt-auth-hero-overlay,
html.theme-light .kt-auth-hero-overlay,
body.theme-light .kt-auth-hero-overlay {
    background:
        linear-gradient(90deg, rgba(5, 6, 10, 0.76) 0%, rgba(5, 6, 10, 0.62) 50%, rgba(5, 6, 10, 0.36) 100%),
        linear-gradient(180deg, rgba(5, 6, 10, 0.06) 0%, rgba(5, 6, 10, 0.72) 100%),
        radial-gradient(circle at 18% 20%, rgba(229, 9, 20, 0.22), transparent 36%);
}

.kt-theme-light .kt-auth-steps-section h2,
html.theme-light .kt-auth-steps-section h2,
body.theme-light .kt-auth-steps-section h2,
.kt-theme-light .kt-auth-random-section h2,
html.theme-light .kt-auth-random-section h2,
body.theme-light .kt-auth-random-section h2,
.kt-theme-light .kt-auth-final-cta h2,
html.theme-light .kt-auth-final-cta h2,
body.theme-light .kt-auth-final-cta h2 {
    color: var(--kt-text, #111827);
}

.kt-theme-light .kt-auth-section-head p,
html.theme-light .kt-auth-section-head p,
body.theme-light .kt-auth-section-head p,
.kt-theme-light .kt-auth-final-cta p,
html.theme-light .kt-auth-final-cta p,
body.theme-light .kt-auth-final-cta p {
    color: var(--kt-muted, #6b7280);
}

.kt-theme-light .kt-auth-step-card,
html.theme-light .kt-auth-step-card,
body.theme-light .kt-auth-step-card,
.kt-theme-light .kt-auth-film-card,
html.theme-light .kt-auth-film-card,
body.theme-light .kt-auth-film-card,
.kt-theme-light .kt-auth-final-cta,
html.theme-light .kt-auth-final-cta,
body.theme-light .kt-auth-final-cta {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.10);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1199.98px) {
    .kt-auth-grid {
        grid-template-columns: minmax(0, 1fr) 430px;
        gap: 28px;
    }

    .kt-auth-benefits,
    .kt-auth-steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .kt-auth-grid {
        grid-template-columns: 1fr;
    }

    .kt-auth-card-wrap {
        max-width: 560px;
    }

    .kt-auth-hero,
    .kt-auth-grid {
        min-height: auto;
    }

    .kt-auth-final-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .kt-auth-page {
        padding-top: 0;
    }

    .kt-auth-hero {
        margin-top: 12px;
        border-radius: 22px;
    }

    .kt-auth-grid {
        padding: 22px;
    }

    .kt-auth-card {
        padding: 20px;
        border-radius: 22px;
    }

    .kt-auth-benefits,
    .kt-auth-steps-grid {
        grid-template-columns: 1fr;
    }

    .kt-auth-final-actions,
    .kt-auth-final-primary,
    .kt-auth-final-secondary {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .kt-auth-left h1 {
        font-size: 2.45rem;
    }

    .kt-auth-card-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .kt-auth-badges span {
        width: 100%;
    }

    .kt-auth-film-card,
    .kt-auth-step-card,
    .kt-auth-final-cta {
        border-radius: 20px;
    }
}

/* ============================================================
   LOGIN PAGE ADDITIONS
   ============================================================ */

.kt-login-page .kt-auth-card {
    max-width: 470px;
    margin-left: auto;
}

.kt-auth-remember-row {
    margin: 4px 0 16px;
}

.kt-auth-remember-field {
    margin: 0;
}

.kt-auth-checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 12px 14px;
    width: 100%;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    font-weight: 850;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.11);
    transition: all 0.22s ease;
}

.kt-auth-checkbox-label:hover {
    color: #fff;
    background: rgba(229, 9, 20, 0.13);
    border-color: rgba(229, 9, 20, 0.28);
}

.kt-auth-checkbox {
    width: 18px;
    height: 18px;
    accent-color: var(--kt-red, #e50914);
    cursor: pointer;
}

.kt-auth-login-help {
    display: grid;
    gap: 10px;
    margin: 16px 0;
}

.kt-auth-login-help a {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 12px;
    text-decoration: none;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.11);
    transition: all 0.22s ease;
}

.kt-auth-login-help a:hover {
    transform: translateY(-2px);
    background: rgba(229, 9, 20, 0.14);
    border-color: rgba(229, 9, 20, 0.32);
    box-shadow: 0 12px 28px rgba(229, 9, 20, 0.12);
}

.kt-auth-login-help a i {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--kt-red, #e50914), #85020a);
    box-shadow: 0 10px 24px rgba(229, 9, 20, 0.24);
}

.kt-auth-login-help a span {
    display: block;
    min-width: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.88rem;
    line-height: 1.35;
}

.kt-auth-login-help a strong {
    display: block;
    margin-bottom: 2px;
    color: #fff;
    font-size: 0.94rem;
    font-weight: 950;
}

.kt-theme-light .kt-auth-checkbox-label,
html.theme-light .kt-auth-checkbox-label,
body.theme-light .kt-auth-checkbox-label,
.kt-theme-light .kt-auth-login-help a,
html.theme-light .kt-auth-login-help a,
body.theme-light .kt-auth-login-help a {
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 991.98px) {
    .kt-login-page .kt-auth-card {
        max-width: 560px;
        margin-left: 0;
    }
}