﻿:root {
    --bg: #07020f;
    --bg-2: #100524;
    --purple-950: #800080;
    --purple-900: #800090;
    --purple-700: #6e22ff;
    --purple-500: #a855f7;
    --purple-300: #d8b4fe;
    --pink: #ff3dc8;
    --cyan: #4ee7ff;
    --green: #20e39b;
    --gold: #ffd166;
    --white: #ffffff;
    --ink: #131027;
    --muted: #746b8b;
    --glass: rgba(255, 255, 255, .08);
    --glass-strong: rgba(255, 255, 255, .14);
    --line: rgba(255, 255, 255, .16);
    --dark-line: rgba(31, 14, 65, .11);
    --shadow-purple: 0 28px 90px rgba(109, 34, 255, .28);
    --shadow-soft: 0 22px 70px rgba(21, 5, 48, .14);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    margin: 0;
    padding: 0;
    color: var(--ink);
    background: #fbf8ff;
    font-family: "Inter", Arial, sans-serif;
    line-height: 1.6;
    overflow-x: clip;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

.page-glow {
    position: fixed;
    inset: auto -120px -180px auto;
    z-index: -1;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(168, 85, 247, .2), transparent 68%);
    pointer-events: none;
}

.hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
}

.grid-light {
    position: absolute;
    inset: 0;
    opacity: .24;
    background-image:
        linear-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .12) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(circle at top, #000 0%, transparent 72%);
}

.blob {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: .42;
    animation: blobMove 14s ease-in-out infinite alternate;
}

.blob-one {
    top: -170px;
    left: -80px;
    background: rgba(168, 85, 247, .65);
}

.blob-two {
    right: -130px;
    top: 14%;
    background: rgba(78, 231, 255, .34);
    animation-delay: -4s;
}

.blob-three {
    left: 35%;
    bottom: -210px;
    background: rgba(255, 61, 200, .32);
    animation-delay: -8s;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
    animation: spin 32s linear infinite;
}

.orbit::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 22px rgba(78, 231, 255, .75);
}

.orbit-one {
    width: 420px;
    height: 420px;
    right: 5%;
    top: 13%;
}

.orbit-one::before {
    top: 58px;
    right: 62px;
}

.orbit-two {
    width: 260px;
    height: 260px;
    left: 7%;
    bottom: 16%;
    animation-duration: 24s;
    animation-direction: reverse;
}

.orbit-two::before {
    bottom: 34px;
    left: 46px;
    background: var(--pink);
}

.hero-beam {
    position: absolute;
    width: 180px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .72), transparent);
    opacity: .4;
    animation: beamSweep 7s linear infinite;
}

.beam-one {
    top: 18%;
    left: -220px;
}

.beam-two {
    top: 62%;
    left: -260px;
    animation-delay: -3s;
}

.sparkle {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 0 18px rgba(255, 255, 255, .75);
    animation: sparkleFloat 5s ease-in-out infinite alternate;
}

.s1 { top: 26%; left: 14%; }
.s2 { top: 31%; right: 18%; animation-delay: -1s; }
.s3 { bottom: 24%; left: 43%; animation-delay: -2s; }
.s4 { bottom: 34%; right: 30%; animation-delay: -3s; }

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at center, rgba(128, 0, 128, .2), transparent 42%), #ffffff;
    transition: opacity .45s ease, visibility .45s ease;
}

.page-loader img {
    width: min(128px, 32vw);
    height: auto;
}

.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@keyframes blobMove {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to { transform: translate3d(42px, -24px, 0) scale(1.08); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes beamSweep {
    from { transform: translateX(0) rotate(-16deg); }
    to { transform: translateX(calc(100vw + 520px)) rotate(-16deg); }
}

@keyframes sparkleFloat {
    from { transform: translate3d(0, 0, 0) scale(.85); opacity: .45; }
    to { transform: translate3d(10px, -18px, 0) scale(1.1); opacity: .95; }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

/* Partner login page */
body.login-page {
    min-height: 100vh;
    color: #fff;
    background:
        radial-gradient(circle at 18% 26%, rgba(128, 0, 128, .78), transparent 31%),
        radial-gradient(circle at 83% 64%, rgba(244, 112, 55, .58), transparent 31%),
        radial-gradient(circle at 100% 0%, rgba(188, 45, 143, .72), transparent 30%),
        linear-gradient(135deg, #16041e 0%, #26002e 48%, #390650 100%) !important;
    background-size: 100% 100% !important;
    background-repeat: no-repeat !important;
    animation: none !important;
}

body.login-page main,
body.login-page .login-main {
    background: transparent !important;
}

body.login-page .login-main::before,
body.login-page .login-main::after,
body.login-page .login-hero::before,
body.login-page .login-hero::after {
    content: none !important;
    display: none !important;
}

.login-hero {
    min-height: 100vh;
    padding: 0;
    margin: 0;
    display: block;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 18% 26%, rgba(128, 0, 128, .78), transparent 31%),
        radial-gradient(circle at 83% 64%, rgba(244, 112, 55, .58), transparent 31%),
        radial-gradient(circle at 100% 0%, rgba(188, 45, 143, .72), transparent 30%),
        linear-gradient(135deg, #16041e 0%, #26002e 48%, #390650 100%);
}

.login-hero .grid-light {
    opacity: .68;
    background-size: 86px 86px;
    mask-image: none;
}

.login-hero .blob {
    opacity: .42;
    filter: blur(56px);
}

.login-hero .blob-one {
    left: -130px;
    top: 120px;
    background: #800080;
}

.login-hero .blob-two {
    right: -150px;
    top: -70px;
    background: #ff3dc8;
}

.login-hero .blob-three {
    left: 59%;
    bottom: -190px;
    background: #f47037;
}

.login-hero .orbit {
    opacity: .32;
}

.login-shell {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(350px, 430px);
    gap: clamp(24px, 3.2vw, 50px);
    align-items: stretch;
    padding: clamp(18px, 2.1vw, 28px) clamp(24px, 3.5vw, 44px);
}

.login-left {
    position: relative;
    min-height: calc(100vh - 56px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 10px;
}

.login-brand {
    width: fit-content;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    color: #fff;
    line-height: 1;
}

.login-brand img {
    width: clamp(155px, 14vw, 230px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 14px 24px rgba(255,255,255,.16));
    animation: loginFloat 4.8s ease-in-out infinite;
}

.login-gif-accent {
    position: absolute;
    left: min(38vw, 560px);
    top: 18%;
    width: clamp(72px, 8vw, 116px);
    height: auto;
    opacity: .32;
    mix-blend-mode: screen;
    pointer-events: none;
    filter: drop-shadow(0 0 26px rgba(255, 209, 102, .55));
    animation: loginDrift 8s ease-in-out infinite;
}

.login-left-center {
    margin: auto 0 6vh;
}

.login-left h1 {
    max-width: 760px;
    margin: 0 0 34px;
    color: rgba(255,255,255,.82);
    text-align: left;
    font-size: clamp(30px, 2.65vw, 43px);
    line-height: 1.32;
    font-weight: 900;
    letter-spacing: 0;
    text-shadow: 0 18px 52px rgba(0,0,0,.34), 0 0 22px rgba(255,255,255,.08);
    animation: loginFadeUp .72s ease both;
}

.login-stats {
    width: fit-content;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin: 0;
}

.login-stat {
    position: relative;
    min-width: 208px;
    padding: 0 24px;
    text-align: left;
    transition: transform .25s ease, filter .25s ease;
}

.login-stat:hover {
    transform: translateY(-3px);
    filter: drop-shadow(0 12px 22px rgba(255,255,255,.13));
}

.login-stat:first-child {
    padding-left: 0;
}

.login-stat:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 3px;
    right: 0;
    width: 1px;
    height: 44px;
    background: rgba(255,255,255,.3);
}

.login-stat strong,
.login-stat span {
    display: block;
}

.login-stat strong {
    color: #fff;
    font-size: clamp(15px, 1.05vw, 18px);
    line-height: 1.25;
    font-weight: 900;
}

.login-stat span {
    margin-top: 2px;
    color: #fff;
    font-size: clamp(14px, 1vw, 17px);
    line-height: 1.35;
    font-weight: 600;
}

.login-download {
    padding-left: 18px;
    animation: loginFadeUp .78s ease .08s both;
}

.login-download h2 {
    margin: 0 0 10px;
    color: rgba(255,255,255,.7);
    font-size: clamp(14px, 1vw, 18px);
    line-height: 1.2;
    font-weight: 900;
}

.login-store-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(12px, 2.1vw, 30px);
}

.login-store-badge {
    min-width: clamp(170px, 12vw, 198px);
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 12px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 5px;
    color: #fff;
    background: #030303;
    box-shadow: 0 14px 28px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.14);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.login-store-badge:hover {
    transform: translateY(-3px);
    border-color: rgba(255,255,255,.42);
    box-shadow: 0 18px 36px rgba(0,0,0,.32), 0 0 22px rgba(255,255,255,.08), inset 0 1px 0 rgba(255,255,255,.2);
}

.login-store-badge i {
    font-size: 30px;
}

.login-store-badge img {
    width: 31px;
    height: 31px;
    object-fit: contain;
}

.login-store-badge em,
.login-store-badge strong {
    display: block;
    line-height: 1;
}

.login-store-badge em {
    font-style: normal;
    font-size: 10px;
    letter-spacing: .02em;
}

.login-store-badge strong {
    margin-top: 3px;
    font-size: clamp(18px, 1.35vw, 23px);
    font-weight: 800;
}

.login-card {
    align-self: center;
    width: min(100%, 430px);
    min-height: min(680px, calc(100vh - 48px));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: auto;
    padding: clamp(18px, 2vw, 28px) 14px 18px;
    border-radius: 34px;
    color: #210a3d;
    background: rgba(255,255,255,.98);
    box-shadow: 0 0 38px rgba(255,255,255,.26), 0 34px 98px rgba(38,5,55,.44), inset 0 1px 0 rgba(255,255,255,.9);
    animation: loginCardIn .64s cubic-bezier(.2,.8,.2,1) both;
}

.login-mobile-brand {
    display: none;
}

.login-mobile-brand img {
    width: clamp(145px, 44vw, 210px);
    height: auto;
    margin: 0 auto 16px;
    object-fit: contain;
}

.login-card-panel {
    position: relative;
    overflow: hidden;
    min-height: 545px;
    padding: clamp(22px, 2vw, 28px) clamp(22px, 2.2vw, 30px) 24px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.8), rgba(252,241,255,.86)),
        radial-gradient(circle at 28% 2%, rgba(255,255,255,.96), transparent 44%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}

.login-card-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(112deg, transparent 0 36%, rgba(255,255,255,.54) 46%, transparent 58%);
    transform: translateX(-115%);
    animation: loginPanelShine 5.4s ease-in-out infinite;
    pointer-events: none;
}

.login-card h2 {
    margin: 0;
    color: #220939;
    font-size: clamp(21px, 1.55vw, 26px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: 0;
}

.login-card-panel > p {
    margin: 7px 0 22px;
    color: #5d4b74;
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.35;
    font-weight: 700;
}

.login-field {
    margin-bottom: 22px;
}

.login-field label,
.login-field-top label {
    display: block;
    color: #28113e;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 900;
}

.login-field > label {
    margin-bottom: 8px;
}

.login-field-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 8px;
}

.login-field-top a {
    color: #9d00bf;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 900;
    white-space: nowrap;
}

.login-input {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    border: 1px solid rgba(59, 28, 85, .12);
    border-radius: 10px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 8px 19px rgba(39, 14, 61, .1), inset 0 1px 0 rgba(255,255,255,.9);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.login-input:focus-within {
    border-color: rgba(154, 0, 190, .42);
    box-shadow: 0 12px 28px rgba(128,0,128,.16), 0 0 0 4px rgba(154,0,190,.08), inset 0 1px 0 rgba(255,255,255,.96);
    transform: translateY(-1px);
}

.login-input i {
    flex: 0 0 auto;
    width: 18px;
    color: #74518d;
    font-size: 14px;
    text-align: center;
}

.login-input input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    color: #2e1649;
    background: transparent;
    font-size: 13px;
    font-weight: 700;
}

.login-input input::placeholder {
    color: #7f748c;
}

.login-password-toggle {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    color: #74518d;
    background: transparent;
    cursor: pointer;
}

.login-password-toggle i {
    width: auto;
}

.login-error {
    min-height: 15px;
    display: block;
    margin-top: 5px;
    color: #d52424;
    font-size: 11px;
    line-height: 1.25;
    font-weight: 800;
}

.login-captcha {
    margin: -4px 0 20px;
}

.login-captcha-row {
    display: grid;
    grid-template-columns: minmax(112px, 1fr) minmax(86px, .9fr) 44px;
    gap: 9px;
    align-items: stretch;
}

.login-captcha-box,
.login-captcha-refresh {
    min-height: 42px;
    border: 1px solid rgba(59, 28, 85, .12);
    border-radius: 10px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 8px 19px rgba(39, 14, 61, .1), inset 0 1px 0 rgba(255,255,255,.9);
}

.login-captcha-question {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 13px;
    color: #28113e;
}

.login-captcha-question i {
    color: #74518d;
    font-size: 16px;
}

.login-captcha-question strong {
    color: #9200ad;
    font-size: 15px;
    line-height: 1;
    font-weight: 900;
    white-space: nowrap;
}

.login-captcha-answer {
    display: flex;
    align-items: center;
    padding: 0 12px;
}

.login-captcha-answer input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    color: #2e1649;
    background: transparent;
    font-size: 13px;
    font-weight: 800;
}

.login-captcha-answer input::placeholder {
    color: #7f748c;
}

.login-captcha-refresh {
    display: grid;
    place-items: center;
    padding: 0;
    color: #8a00aa;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.login-captcha-refresh:hover {
    transform: translateY(-1px);
    border-color: rgba(154, 0, 190, .28);
    box-shadow: 0 12px 26px rgba(128,0,128,.14), inset 0 1px 0 rgba(255,255,255,.96);
}

.login-captcha-refresh i {
    width: auto;
    font-size: 15px;
}

.login-step {
    position: relative;
}

.login-otp-loader {
    position: absolute;
    inset: 0;
    display: none;
    align-content: center;
    justify-items: center;
    gap: 10px;
    color: #7d008f;
    text-align: center;
    font-size: 14px;
    font-weight: 900;
    background: rgba(255,255,255,.9);
    border-radius: 14px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.95), 0 16px 34px rgba(128,0,128,.12);
    backdrop-filter: blur(6px);
    z-index: 20;
}

.login-otp-loader[aria-hidden="false"] {
    display: grid;
}

.login-otp-loader img {
    width: 92px;
    height: auto;
    filter: drop-shadow(0 12px 22px rgba(128,0,128,.22));
}

.login-otp-step {
    position: relative;
    display: none;
    padding-top: 34px;
}

.login-otp-back {
    position: absolute;
    left: 0;
    top: 0;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(128,0,128,.14);
    border-radius: 50%;
    color: #800080;
    background: rgba(255,255,255,.86);
    box-shadow: 0 10px 22px rgba(128,0,128,.1), inset 0 1px 0 rgba(255,255,255,.9);
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.login-otp-back:hover {
    transform: translateX(-2px);
    background: #fff;
    box-shadow: 0 14px 28px rgba(128,0,128,.16), 0 0 16px rgba(255,156,23,.14);
}

.login-card-panel.is-otp > h2,
.login-card-panel.is-otp > p,
.login-card-panel.is-otp .login-step,
.login-card-panel.is-otp .login-divider,
.login-card-panel.is-otp .login-empty-panel,
.login-card-panel.is-otp .login-register {
    display: none;
}

.login-card-panel.is-otp .login-otp-step {
    display: block;
}

.login-card-panel.is-otp {
    background:
        radial-gradient(circle at 14% 12%, rgba(255,156,23,.08), transparent 28%),
        radial-gradient(circle at 86% 78%, rgba(128,0,128,.08), transparent 32%),
        linear-gradient(180deg, rgba(255,255,255,.9), rgba(253,242,255,.9));
}

.login-otp-step h2 {
    margin: 0 0 18px;
    color: #290538;
    font-size: clamp(23px, 1.7vw, 28px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: 0;
}

.login-otp-step p {
    margin: 0 0 20px;
    color: #74518d;
    font-size: clamp(14px, 1.05vw, 17px);
    line-height: 1.35;
    font-weight: 800;
}

.login-otp-step p button {
    padding: 0;
    border: 0;
    color: #9200ad;
    background: transparent;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.login-otp-boxes {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 14px;
}

.login-otp-boxes input {
    width: 100%;
    aspect-ratio: 1 / .92;
    border: 0;
    border-bottom: 1px solid rgba(128,0,128,.35);
    outline: 0;
    color: #290538;
    background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(252,241,255,.82));
    text-align: center;
    font-size: 18px;
    font-weight: 900;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.login-otp-boxes input:focus {
    border-bottom-color: #ff9c17;
    background: #fff;
    box-shadow: 0 10px 24px rgba(128,0,128,.12), 0 0 0 3px rgba(255,156,23,.12);
}

.login-resend {
    display: inline-flex;
    margin: 0 0 48px;
    padding: 0;
    border: 0;
    color: #9200ad;
    background: transparent;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
    cursor: pointer;
}

.login-otp-submit {
    width: 100%;
    min-height: 46px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(90deg, #a400c3, #800080 72%, #6f006f);
    box-shadow: 0 14px 28px rgba(128,0,128,.24), 0 0 20px rgba(255,156,23,.12);
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}

.login-otp-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(128,0,128,.32), 0 0 26px rgba(255,156,23,.18);
}

.login-submit {
    width: 100%;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(90deg, #a400c3, #7d008f);
    box-shadow: 0 10px 22px rgba(126,0,150,.28);
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease;
}

.login-submit::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 0 36%, rgba(255,255,255,.38) 48%, transparent 60%);
    transform: translateX(-120%);
    transition: transform .5s ease;
}

.login-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(126,0,150,.34), 0 0 24px rgba(184,0,212,.22);
}

.login-submit:hover::before {
    transform: translateX(120%);
}

.login-divider {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 14px;
    align-items: center;
    margin: 24px 0 18px;
    color: #6f637c;
    font-size: 11px;
    font-weight: 900;
}

.login-divider::before,
.login-divider::after {
    content: "";
    height: 1px;
    background: rgba(70, 36, 93, .14);
}

.login-empty-panel {
    min-height: 50px;
    display: grid;
    place-items: center;
    margin: 0 -18px 22px;
    background: rgba(251, 237, 255, .7);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.72), 0 10px 24px rgba(128,0,128,.08);
}

.login-empty-panel a {
    display: block;
    color: #9400a5;
    font-size: clamp(28px, 2.55vw, 40px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: .02em;
    white-space: nowrap;
    text-shadow: 0 8px 20px rgba(148,0,165,.18);
    animation: loginPulseText 2.8s ease-in-out infinite;
}

@keyframes loginFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes loginDrift {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    50% {
        transform: translate3d(14px, -18px, 0) rotate(8deg);
    }
}

@keyframes loginFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loginCardIn {
    from {
        opacity: 0;
        transform: translateX(28px) scale(.98);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes loginPanelShine {
    0%, 52%, 100% {
        transform: translateX(-115%);
        opacity: 0;
    }
    64% {
        opacity: .58;
    }
    82% {
        transform: translateX(115%);
        opacity: 0;
    }
}

@keyframes loginPulseText {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(148,0,165,0));
    }
    50% {
        transform: scale(1.025);
        filter: drop-shadow(0 0 14px rgba(148,0,165,.22));
    }
}

@media (prefers-reduced-motion: reduce) {
    .login-brand img,
    .login-gif-accent,
    .login-left h1,
    .login-download,
    .login-card,
    .login-card-panel::before,
    .login-empty-panel a {
        animation: none !important;
    }

    .login-stat,
    .login-store-badge,
    .login-input,
    .login-submit {
        transition: none !important;
    }
}

.login-register {
    margin: 0;
    color: #443553;
    text-align: center;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 900;
}

.login-register a,
.login-legal a {
    color: #9900b8;
    font-weight: 900;
}

.login-legal {
    margin: 18px 12px 0;
    color: #9a939f;
    text-align: center;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 500;
}

@media (max-width: 1180px) {
    .login-shell {
        grid-template-columns: minmax(0, 1fr);
        place-items: center;
        align-items: center;
        padding: 24px 18px;
    }

    .login-left {
        display: none;
    }

    .login-card {
        margin: 0 auto;
        width: min(100%, 430px);
    }

    .login-mobile-brand {
        display: block;
    }
}

@media (max-width: 760px) {
    .login-shell {
        min-height: 100svh;
        padding: 18px 12px;
    }

    .login-hero {
        min-height: 100svh;
        overflow-y: auto;
    }

    .login-card {
        width: min(100%, 390px);
        min-height: auto;
        margin: 0 auto;
        padding: 14px 10px 18px;
        border-radius: 26px;
    }

    .login-card-panel {
        min-height: auto;
        padding: 20px 14px 22px;
    }

    .login-card h2 {
        font-size: 21px;
    }

    .login-card-panel > p {
        margin-bottom: 18px;
        font-size: 14px;
    }

    .login-field {
        margin-bottom: 18px;
    }

    .login-input {
        min-height: 42px;
    }

    .login-captcha {
        margin-bottom: 18px;
    }

    .login-captcha-row {
        grid-template-columns: minmax(92px, 1fr) minmax(76px, .85fr) 42px;
        gap: 7px;
    }

    .login-captcha-question {
        gap: 7px;
        padding: 0 10px;
    }

    .login-captcha-question strong {
        font-size: 14px;
    }

    .login-otp-step h2 {
        font-size: 23px;
    }

    .login-otp-step p {
        font-size: 14px;
    }

    .login-otp-boxes {
        gap: 8px;
    }

    .login-resend {
        margin-bottom: 36px;
        font-size: 14px;
    }

    .login-divider {
        margin: 20px 0 16px;
    }

    .login-empty-panel {
        min-height: 42px;
        margin-bottom: 18px;
    }

    .login-empty-panel a {
        font-size: clamp(26px, 8vw, 34px);
    }

    .login-register {
        font-size: 12px;
    }

    .login-legal {
        margin-top: 18px;
        font-size: 13px;
    }
}

@media (max-width: 420px) {
    .login-shell {
        padding: 12px 10px;
    }

    .login-card {
        width: 100%;
        padding: 12px 8px 16px;
        border-radius: 22px;
    }

    .login-card-panel {
        padding: 18px 12px 20px;
    }

    .login-card h2 {
        font-size: 20px;
    }

    .login-input input {
        font-size: 12px;
    }
}

.signup-card {
    width: min(100%, 520px);
}

.signup-panel {
    min-height: 560px;
    padding-top: 24px;
    font-family: "Inter", Arial, sans-serif;
}

.signup-panel > h2 {
    margin-bottom: 6px;
    color: #24113d;
    font-size: clamp(24px, 1.9vw, 30px);
    line-height: 1.12;
    font-weight: 800;
}

.signup-panel > p {
    margin-bottom: 18px;
    color: #5a4a71;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 600;
}

.signup-step {
    display: none;
}

.signup-step.is-active {
    display: block;
    animation: loginFadeUp .32s ease both;
}

.signup-step h3,
.signup-success h3 {
    margin: 0 0 16px;
    color: #24113d;
    font-size: clamp(20px, 1.35vw, 24px);
    line-height: 1.18;
    font-weight: 800;
}

.signup-step-copy {
    margin: 0 0 14px;
    color: #5f526f;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 600;
}

.signup-panel .login-field {
    margin-bottom: 12px;
}

.signup-panel .login-field > label {
    margin-bottom: 6px;
    color: #2a193f;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
}

.signup-panel .login-input {
    min-height: 46px;
    gap: 11px;
    padding: 0 15px;
    border-color: rgba(37, 24, 56, .16);
    border-radius: 6px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 10px 22px rgba(36, 17, 61, .07), inset 0 1px 0 rgba(255, 255, 255, .9);
}

.signup-panel .login-input:focus-within {
    border-color: rgba(128, 0, 128, .42);
    box-shadow: 0 12px 24px rgba(128, 0, 128, .12), 0 0 0 3px rgba(128, 0, 128, .08);
    transform: none;
}

.signup-panel .login-input i {
    width: 17px;
    color: #725b87;
    font-size: 13px;
}

.signup-panel .login-input input {
    color: #2e2340;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 600;
}

.signup-panel .login-input input::placeholder {
    color: #81758e;
    font-weight: 600;
}

.signup-panel .login-error {
    min-height: 12px;
    margin-top: 3px;
    font-size: 10px;
    line-height: 1.2;
}

.signup-panel .login-otp-boxes {
    gap: 8px;
}

.signup-panel .login-otp-boxes input {
    height: 44px;
    border-radius: 6px;
    font-size: 16px;
}

.signup-panel .login-submit {
    min-height: 46px;
    margin-top: 4px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 800;
}

.signup-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    padding: 13px 14px;
    border: 1px solid rgba(59, 28, 85, .12);
    border-radius: 8px;
    color: #2e1649;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 8px 19px rgba(39, 14, 61, .08), inset 0 1px 0 rgba(255, 255, 255, .9);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 800;
    cursor: pointer;
}

.signup-check input {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    accent-color: #9200ad;
}

.signup-check a {
    color: #9200ad;
    font-weight: 900;
}

.signup-success {
    display: none;
    padding: 28px 0 10px;
    text-align: center;
}

.signup-success[aria-hidden="false"] {
    display: grid;
    justify-items: center;
    gap: 12px;
    animation: loginFadeUp .38s ease both;
}

.signup-success-icon {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    position: relative;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #2aa877 0%, #188f86 46%, #722a8d 100%);
    box-shadow: 0 18px 42px rgba(40, 141, 120, .26);
    font-size: 32px;
}

.signup-success-icon::before {
    content: "";
    position: absolute;
    inset: 15px;
    border: 3px solid rgba(255, 255, 255, .92);
    border-radius: 50%;
}

.signup-success-icon i {
    position: relative;
    z-index: 1;
    transform: translate(2px, -1px);
}

.signup-success p {
    margin: 0;
    color: #5d4b74;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 800;
}

.signup-success strong {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 8px;
    color: #290538;
    background: rgba(128, 0, 128, .08);
    font-size: 16px;
    font-weight: 900;
}

.signup-success {
    min-height: 500px;
    padding: 34px 0 12px;
}

.signup-success[aria-hidden="false"] {
    align-content: start;
    gap: 15px;
}

.signup-success h3 {
    margin: 0;
    font-size: clamp(24px, 1.8vw, 28px);
    font-weight: 900;
}

.signup-success p {
    max-width: 330px;
    line-height: 1.42;
}

.signup-success strong {
    align-items: center;
    justify-content: center;
    min-width: 198px;
    min-height: 46px;
    padding: 10px 16px;
    background: rgba(128, 0, 128, .1);
}

.signup-success .login-submit {
    margin-top: 6px;
}

.signup-panel.is-created > h2,
.signup-panel.is-created > p,
.signup-panel.is-created .signup-flow,
.signup-panel.is-created .login-register {
    display: none;
}

@media (max-width: 767.98px) {
    .signup-panel {
        min-height: auto;
        padding-top: 20px;
    }

    .signup-panel .login-field {
        margin-bottom: 10px;
    }
}

