﻿

/**,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --yellow: #ffc107;
    --yellow-dk: #e0a800;
    --purple: #6c63ff;
    --purple-lt: #ede9ff;
    --purple-soft: #8d86ff;
    --purple-deep: #4f46d4;
    --panel-mist: #f2f0ff;
    --dark: #1a1a2e;
    --mid: #444466;
    --light: #f5f7ff;
    --white: #ffffff;
    --border: #e2e4f0;
    --danger: #e84f4f;
    --radius: 14px;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--light);
    min-height: 100vh;
    color: var(--dark);
}

.register-shell {
    min-height: calc(100vh - 44px);
    display: grid;
    place-items: center;
    padding: 20px;
}

.register-layout {
    width: min(1000px, 100%);
    min-height: min(700px, calc(100vh - 40px));
    display: flex;
    overflow: hidden;
    border-radius: 28px;
    background: var(--white);
    border: 1px solid rgba(23, 50, 77, 0.06);
    box-shadow: 0 40px 100px rgba(76, 67, 167, 0.14), 0 14px 30px rgba(76, 67, 167, 0.08);
}
.scan-field {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    mix-blend-mode: screen;
    opacity: 0.92;
}

    .scan-field::before,
    .scan-field::after {
        content: "";
        position: absolute;
        inset: auto;
        border-radius: 50%;
        filter: blur(56px);
        opacity: 0.8;
    }

    .scan-field::before {
        width: 360px;
        height: 360px;
        left: -120px;
        top: -120px;
        background: rgba(116, 220, 255, 0.18);
        animation: scan-glow 18s ease-in-out infinite alternate;
    }

    .scan-field::after {
        width: 420px;
        height: 420px;
        right: -170px;
        bottom: -170px;
        background: rgba(141, 134, 255, 0.22);
        animation: scan-glow 24s ease-in-out infinite alternate-reverse;
    }

.register-layout {
    width: min(1000px, 100%);
    min-height: min(700px, calc(100vh - 40px));
    display: flex;
    overflow: hidden;
    border-radius: 28px;
    background: var(--white);
    border: 1px solid rgba(23, 50, 77, 0.06);
    box-shadow: 0 40px 100px rgba(76, 67, 167, 0.14), 0 14px 30px rgba(76, 67, 167, 0.08);
    position: relative;
    z-index: 2;
}

.scan-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(121, 219, 255, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(121, 219, 255, 0.12) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at center, black 52%, transparent 100%);
    opacity: 0.45;
    animation: grid-pan 28s linear infinite;
}

.scan-beam,
.bg-scan-card,
.scan-target {
    position: absolute;
    display: block;
    pointer-events: none;
    will-change: transform, opacity;
}

.scan-beam {
    background: linear-gradient( 90deg, rgba(121, 219, 255, 0), rgba(121, 219, 255, 0.96), rgba(121, 219, 255, 0) );
    box-shadow: 0 0 24px rgba(121, 219, 255, 0.65);
}

.beam-horizontal {
    left: -20%;
    right: -20%;
    height: 2px;
    top: 18%;
    animation: beam-slide-y 4.2s ease-in-out infinite;
}

.beam-vertical {
    top: -20%;
    bottom: -20%;
    width: 2px;
    left: 72%;
    background: linear-gradient( 180deg, rgba(121, 219, 255, 0), rgba(255, 255, 255, 0.9), rgba(121, 219, 255, 0) );
    animation: beam-slide-x 5.1s ease-in-out infinite;
}

.bg-scan-card {
    border-radius: 18px;
    border: 1px solid rgba(121, 219, 255, 0.28);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08)), linear-gradient(180deg, rgba(19, 42, 76, 0.48), rgba(19, 42, 76, 0.24));
    box-shadow: 0 24px 40px rgba(19, 42, 76, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
    overflow: hidden;
    animation: card-float var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
}

    .bg-scan-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(121, 219, 255, 0.34), rgba(121, 219, 255, 0)), linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent);
        opacity: 0.9;
        clip-path: polygon(0 0, 100% 0, 100% 86%, 88% 100%, 0 100%);
    }

    .bg-scan-card::after {
        content: "";
        position: absolute;
        left: 12px;
        right: 12px;
        top: 14px;
        height: 58%;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0 34%, transparent 34% 100%) 0 0 / 100% 8px no-repeat, linear-gradient(90deg, rgba(255, 255, 255, 0.72) 0 52%, transparent 52% 100%) 0 18px / 100% 6px no-repeat, linear-gradient(90deg, rgba(121, 219, 255, 0.42) 0 64%, transparent 64% 100%) 0 34px / 100% 6px no-repeat, linear-gradient(90deg, rgba(255, 255, 255, 0.52) 0 44%, transparent 44% 100%) 0 50px / 100% 6px no-repeat;
        opacity: 0.9;
    }

.scan-target {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid rgba(121, 219, 255, 0.9);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0 18%, transparent 19%);
    box-shadow: 0 0 0 8px rgba(121, 219, 255, 0.08), 0 0 18px rgba(121, 219, 255, 0.45);
    animation: target-pulse 2.6s ease-in-out infinite;
}

.card-a {
    left: 6vw;
    top: 18vh;
    width: 160px;
    height: 98px;
    --duration: 8s;
    --delay: -1s;
    --rotate: -12deg;
}

.card-b {
    right: 8vw;
    top: 16vh;
    width: 138px;
    height: 88px;
    --duration: 9s;
    --delay: -4s;
    --rotate: 8deg;
}

.card-c {
    left: 18vw;
    bottom: 12vh;
    width: 176px;
    height: 106px;
    --duration: 10s;
    --delay: -6s;
    --rotate: 14deg;
}

.card-d {
    right: 16vw;
    bottom: 20vh;
    width: 124px;
    height: 78px;
    --duration: 7s;
    --delay: -2s;
    --rotate: -8deg;
}

.target-a {
    left: 15vw;
    top: 10vh;
    animation-delay: -0.5s;
}

.target-b {
    right: 22vw;
    top: 28vh;
    animation-delay: -1.2s;
}

.target-c {
    left: 62vw;
    bottom: 14vh;
    animation-delay: -1.8s;
}


.left-panel {
    width: 50%;
    background: linear-gradient( 135deg, rgba(43, 31, 120, 0.52) 0%, rgba(43, 31, 120, 0.2) 24%, rgba(43, 31, 120, 0) 42% ), radial-gradient( circle at 18% 18%, rgba(255, 255, 255, 0.42), transparent 22% ), radial-gradient( circle at 88% 16%, rgba(255, 255, 255, 0.18), transparent 24% ), linear-gradient( 155deg, #dcd7ff 0%, var(--purple-soft) 38%, var(--purple) 68%, var(--purple-deep) 100% );
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px 44px;
    position: relative;
    overflow: hidden;
}

    .left-panel::before {
        content: "";
        position: absolute;
        top: -60px;
        right: -60px;
        width: 340px;
        height: 340px;
        background-image: radial-gradient( circle, rgba(255, 255, 255, 0.18) 1.5px, transparent 1.5px );
        background-size: 22px 22px;
        border-radius: 50%;
    }

    .left-panel::after {
        content: "";
        position: absolute;
        bottom: -80px;
        left: -60px;
        width: 280px;
        height: 280px;
        background: #c7c2ff;
        border-radius: 50%;
        opacity: 0.42;
        filter: blur(40px);
    }

.brand {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
    padding: 12px 16px;
    width: fit-content;
    border-radius: 18px;
    backdrop-filter: blur(14px);
    position: relative;
    z-index: 1;
}

.brand-logo {
    width: 250px;
    height: auto;
    object-fit: contain;
    display: block;
}

.panel-tagline,
.scanner-showcase {
    position: relative;
    z-index: 1;
}

    .panel-tagline .sub {
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.88);
        margin-bottom: 10px;
    }

    .panel-tagline h1 {
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: 30px;
        color: var(--white);
        line-height: 1.25;
        margin-bottom: 8px;
    }

    .panel-tagline p {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.76);
        line-height: 1.7;
        max-width: 320px;
    }

.scanner-showcase {
    margin-top: 20px;
    min-height: 300px;
}

.scanner-badge,
.floating-chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 40px rgba(43, 30, 123, 0.22);
}

.scanner-badge {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.badge-top {
    top: 0;
    left: 8px;
}

.badge-right {
    top: 92px;
    right: -8px;
}

.scanner-stage {
    position: relative;
    width: min(100%, 320px);
    margin: 0 auto;
    padding-top: 12px;
}

.scanner-glow {
    position: absolute;
    inset: 34px 28px 18px;
    border-radius: 42px;
    background: radial-gradient( circle at center, rgba(255, 255, 255, 0.26), transparent 58% ), radial-gradient( circle at 50% 80%, rgba(111, 235, 255, 0.28), transparent 38% );
    filter: blur(8px);
}

.scanner-device {
    position: relative;
    width: 210px;
    margin: 22px auto 0;
    padding: 10px;
    border-radius: 28px;
    background: linear-gradient( 180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.1) ), rgba(33, 24, 95, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 28px 60px rgba(30, 17, 96, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.device-notch {
    width: 68px;
    height: 8px;
    margin: 0 auto 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
}

.device-screen {
    padding: 14px 12px 14px;
    border-radius: 20px;
    background: linear-gradient( 180deg, rgba(246, 245, 255, 0.98), rgba(233, 230, 255, 0.96) ), #f3f0ff;
}

.screen-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 11px;
    color: #584bb3;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #3ad28f;
    box-shadow: 0 0 0 6px rgba(58, 210, 143, 0.16);
    animation: pulseDot 1.9s ease-in-out infinite;
}

.scan-frame {
    position: absolute;
    position: relative;
    height: 126px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(108, 99, 255, 0.12), rgba(108, 99, 255, 0.03)), #ffffff;
    border: 1px solid rgba(108, 99, 255, 0.14);
    overflow: hidden;
}

.scan-card {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 126px;
    height: 76px;
    padding: 12px 10px;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(108, 99, 255, 0.2), rgba(108, 99, 255, 0.06)), linear-gradient(180deg, #ffffff, #f7f5ff);
    border: 1px solid rgba(108, 99, 255, 0.14);
    transform: translate(-50%, -50%) rotate(-8deg);
    box-shadow: 0 24px 32px rgba(108, 99, 255, 0.16);
}

.card-stripe {
    width: 32px;
    height: 7px;
    margin-bottom: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, #6c63ff, #8f8aff);
}

.card-line {
    height: 6px;
    margin-bottom: 6px;
    border-radius: 999px;
    background: rgba(84, 73, 184, 0.16);
}

    .card-line.short {
        width: 58%;
    }

    .card-line.small {
        width: 42%;
        margin-bottom: 0;
    }

.scan-line {
    position: absolute;
    left: 12px;
    right: 12px;
    top: 14px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient( 90deg, rgba(111, 235, 255, 0), rgba(111, 235, 255, 0.95), rgba(111, 235, 255, 0) );
    box-shadow: 0 0 16px rgba(111, 235, 255, 0.72);
    animation: scanSweep 2.8s ease-in-out infinite;
}

.scan-corners {
    position: absolute;
    width: 18px;
    height: 18px;
    border-color: rgba(78, 214, 255, 0.95);
    border-style: solid;
    animation: frameBlink 2.8s ease-in-out infinite;
}

.corner-top-left {
    top: 10px;
    left: 10px;
    border-width: 3px 0 0 3px;
    border-top-left-radius: 12px;
}

.corner-top-right {
    top: 10px;
    right: 10px;
    border-width: 3px 3px 0 0;
    border-top-right-radius: 12px;
}

.corner-bottom-left {
    bottom: 10px;
    left: 10px;
    border-width: 0 0 3px 3px;
    border-bottom-left-radius: 12px;
}

.corner-bottom-right {
    right: 10px;
    bottom: 10px;
    border-width: 0 3px 3px 0;
    border-bottom-right-radius: 12px;
}

.scan-results {
    margin-top: 12px;
    display: grid;
    gap: 8px;
}

.result-row {
    display: flex;
    gap: 8px;
}

.result-pill {
    display: block;
    height: 8px;
    border-radius: 999px;
    background: rgba(108, 99, 255, 0.14);
    animation: revealBars 2.8s ease-in-out infinite;
}

    .result-pill.strong {
        width: 42%;
        background: rgba(108, 99, 255, 0.36);
    }

    .result-pill.medium {
        width: 36%;
    }

    .result-pill.short {
        width: 22%;
    }

    .result-pill.long {
        width: 74%;
    }

.floating-chip {
    font-size: 11px;
    font-weight: 700;
    padding: 8px 11px;
}

.chip-icon {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #75f0ba;
    box-shadow: 0 0 0 6px rgba(117, 240, 186, 0.12);
}

.chip-left {
    left: -2px;
    bottom: 74px;
    animation: floatChip 4.2s ease-in-out infinite;
}

.chip-bottom {
    right: 10px;
    bottom: 10px;
    animation: floatChip 4.2s ease-in-out infinite 0.6s;
}

@keyframes scanSweep {
    0%, 100% {
        top: 22px;
        opacity: 0.9;
    }

    50% {
        top: 146px;
        opacity: 1;
    }
}

@keyframes pulseDot {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(58, 210, 143, 0.16);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(58, 210, 143, 0.08);
    }
}

@keyframes frameBlink {
    0%, 100% {
        opacity: 0.75;
    }

    50% {
        opacity: 1;
    }
}

@keyframes revealBars {
    0%, 18% {
        transform: scaleX(0.4);
        transform-origin: left center;
        opacity: 0.45;
    }

    30%, 100% {
        transform: scaleX(1);
        transform-origin: left center;
        opacity: 1;
    }
}

@keyframes floatChip {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.right-panel {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
}

.site-footer {
    width: 100%;
    border-top: 1px solid rgba(23, 50, 77, 0.08);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(10px);
}

.site-footer-inner {
    width: min(1500px, calc(100% - 32px));
    margin: 0 auto;
    padding: 12px 0;
    text-align: center;
    color: var(--mid);
    font-size: 13px;
    font-weight: 500;
}

.footer-brand-link {
    color: #d72638;
    font-weight: 700;
    text-decoration: underline;
}

    .footer-brand-link:hover {
        text-decoration: underline;
    }

.mobile-brand {
    display: none;
}

.mobile-brand-logo {
    width: 210px;
    height: auto;
    display: block;
}

.form-card {
    background: var(--white);
    border-radius: 24px;
    padding: 32px 36px;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 24px 64px rgba(108, 99, 255, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
    border-top: 4px solid var(--yellow);
    animation: slideUp 0.55s cubic-bezier(0.22, 0.84, 0.44, 1) both;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-header {
    margin-bottom: 20px;
}

    .form-header .step-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: var(--purple-lt);
        color: var(--purple);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 5px 12px;
        border-radius: 20px;
        margin-bottom: 14px;
    }

    .form-header h2 {
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: 26px;
        color: var(--dark);
        margin-bottom: 6px;
    }

    .form-header p {
        font-size: 14px;
        color: var(--mid);
    }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.form-group {*/
    /* margin-bottom: 10px; */
/*}

    .form-group label {
        display: block;
        font-size: 12.5px;
        font-weight: 600;
        color: var(--mid);
        margin-bottom: 5px;
        letter-spacing: 0.3px;
    }

.input-wrap {
    position: relative;
}

    .input-wrap .icon {
        position: absolute;
        left: 13px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        align-items: center;
        opacity: 0.4;
    }

        .input-wrap .icon svg {
            width: 16px;
            height: 16px;
        }

.form-group input {
    width: 100%;
    padding: 11px 12px 11px 38px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: var(--dark);
    background: var(--light);
    outline: none;
    transition: border-color 0.22s, box-shadow 0.22s, background 0.22s;
}

    .form-group input::placeholder {
        color: #b0b2c3;
    }

    .form-group input:focus {
        border-color: var(--purple);
        background: var(--white);
        box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.1);
    }

.input-wrap input:focus ~ .icon {
    opacity: 0.7;
}

.text-danger {
    color: var(--danger);
    font-size: 11.5px;
    margin-top: 5px;
    display: block;
    min-height: 14px;
}

.password-wrap {
    position: relative;
}

.toggle-pass {
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    opacity: 0.35;
    background: none;
    border: none;
    padding: 0;
    display: flex;
}

    .toggle-pass:hover {
        opacity: 0.7;
    }

    .toggle-pass svg {
        width: 17px;
        height: 17px;
    }

.divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px 0;
    color: #c5c7d8;
    font-size: 12px;
}

    .divider::before,
    .divider::after {
        content: "";
        flex: 1;
        height: 1px;
        background: var(--border);
    }

.btn-submit {
    width: 100%;
    padding: 13px;
    margin-top: 25px;
    border: none;
    border-radius: var(--radius);
    background: var(--yellow);
    color: var(--dark);
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s, transform 0.18s, box-shadow 0.2s;
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.35);
}

    .btn-submit:hover {
        background: var(--yellow-dk);
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(255, 193, 7, 0.45);
    }

    .btn-submit:active {
        transform: translateY(0);
    }

    .btn-submit svg {
        width: 18px;
        height: 18px;
    }

.login-link {
    text-align: center;
    margin-top: 12px;
    font-size: 13.5px;
    color: var(--mid);
}

    .login-link a {
        color: var(--purple);
        font-weight: 600;
        text-decoration: none;
    }

        .login-link a:hover {
            text-decoration: underline;
        }

@media (max-width: 768px) {
    .register-shell {
        min-height: auto;
        padding: 0;
    }

    .register-layout {
        width: 100%;
        min-height: 100dvh;
        display: block;
        border: none;
        border-radius: 0;
        box-shadow: none;
    }

    .left-panel {
        display: none;
    }

    .right-panel {
        width: 100%;
        min-height: 100vh;
        justify-content: flex-start;
        align-items: stretch;
        padding: 0;
        background: var(--white);
    }

    .mobile-brand {
        display: flex;
        justify-content: flex-start;
        padding: 20px 20px 8px;
    }

    .form-card {
        max-width: none;
        min-height: calc(100vh - 88px);
        border-radius: 0;
        box-shadow: none;
        border-top: none;
        padding: 16px 20px 28px;
    }

    .form-header {
        margin-bottom: 24px;
    }

        .form-header h2 {
            font-size: 24px;
        }

        .form-header p {
            font-size: 12px;
        }

    .form-group label {
        font-size: 10.5px;
    }

    .form-group input {
        font-size: 12px;
    }

    .divider {
        font-size: 10px;
    }

    .login-link,
    .login-link a,
    .text-danger {
        font-size: 11.5px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .site-footer-inner {
        width: calc(100% - 24px);
        padding: 10px 0;
        font-size: 12px;
    }
}

@media (max-width: 1050px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}*/

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --yellow: #ffc107;
    --yellow-dk: #e0a800;
    --purple: #6c63ff;
    --purple-lt: #ede9ff;
    --purple-soft: #8d86ff;
    --purple-deep: #4f46d4;
    --panel-mist: #f2f0ff;
    --dark: #1a1a2e;
    --mid: #444466;
    --light: #f5f7ff;
    --white: #ffffff;
    --border: #e2e4f0;
    --danger: #e84f4f;
    --radius: 14px;
}

body {
    font-family: "Inter", sans-serif;
    background: radial-gradient( circle at 10% 10%, rgba(108, 99, 255, 0.14), transparent 22% ), radial-gradient( circle at 90% 90%, rgba(141, 134, 255, 0.12), transparent 24% ), linear-gradient(180deg, #f4f3ff 0%, #fbfbff 100%);
    min-height: 100vh;
    color: var(--dark);
}

.register-shell {
    min-height: calc(100vh - 44px);
    display: grid;
    place-items: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.shell-lottie-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

    .shell-lottie-bg::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 14% 24%, rgba(108, 99, 255, 0.14), transparent 18%), radial-gradient(circle at 82% 20%, rgba(141, 134, 255, 0.12), transparent 18%), radial-gradient(circle at 76% 78%, rgba(108, 99, 255, 0.1), transparent 20%);
        opacity: 0.95;
    }

.shell-lottie-canvas {
    position: absolute;
    inset: 0;
    opacity: 0.42;
    filter: saturate(1.04);
}

    .shell-lottie-canvas svg {
        width: 100%;
        height: 100%;
    }

.scan-field {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    mix-blend-mode: screen;
    opacity: 0.92;
}

    .scan-field::before,
    .scan-field::after {
        content: "";
        position: absolute;
        inset: auto;
        border-radius: 50%;
        filter: blur(56px);
        opacity: 0.8;
    }

    .scan-field::before {
        width: 360px;
        height: 360px;
        left: -120px;
        top: -120px;
        background: rgba(116, 220, 255, 0.18);
        animation: scan-glow 18s ease-in-out infinite alternate;
    }

    .scan-field::after {
        width: 420px;
        height: 420px;
        right: -170px;
        bottom: -170px;
        background: rgba(141, 134, 255, 0.22);
        animation: scan-glow 24s ease-in-out infinite alternate-reverse;
    }

.register-layout {
    width: min(1000px, 100%);
    min-height: min(700px, calc(100vh - 40px));
    display: flex;
    overflow: hidden;
    border-radius: 28px;
    background: var(--white);
    border: 1px solid rgba(23, 50, 77, 0.06);
    box-shadow: 0 40px 100px rgba(76, 67, 167, 0.14), 0 14px 30px rgba(76, 67, 167, 0.08);
    position: relative;
    z-index: 2;
}

.scan-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(121, 219, 255, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(121, 219, 255, 0.12) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at center, black 52%, transparent 100%);
    opacity: 0.45;
    animation: grid-pan 28s linear infinite;
}

.scan-beam,
.bg-scan-card,
.scan-target {
    position: absolute;
    display: block;
    pointer-events: none;
    will-change: transform, opacity;
}

.scan-beam {
    background: linear-gradient( 90deg, rgba(121, 219, 255, 0), rgba(121, 219, 255, 0.96), rgba(121, 219, 255, 0) );
    box-shadow: 0 0 24px rgba(121, 219, 255, 0.65);
}

.beam-horizontal {
    left: -20%;
    right: -20%;
    height: 2px;
    top: 18%;
    animation: beam-slide-y 4.2s ease-in-out infinite;
}

.beam-vertical {
    top: -20%;
    bottom: -20%;
    width: 2px;
    left: 72%;
    background: linear-gradient( 180deg, rgba(121, 219, 255, 0), rgba(255, 255, 255, 0.9), rgba(121, 219, 255, 0) );
    animation: beam-slide-x 5.1s ease-in-out infinite;
}

.bg-scan-card {
    border-radius: 18px;
    border: 1px solid rgba(121, 219, 255, 0.28);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08)), linear-gradient(180deg, rgba(19, 42, 76, 0.48), rgba(19, 42, 76, 0.24));
    box-shadow: 0 24px 40px rgba(19, 42, 76, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
    overflow: hidden;
    animation: card-float var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
}

    .bg-scan-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(121, 219, 255, 0.34), rgba(121, 219, 255, 0)), linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent);
        opacity: 0.9;
        clip-path: polygon(0 0, 100% 0, 100% 86%, 88% 100%, 0 100%);
    }

    .bg-scan-card::after {
        content: "";
        position: absolute;
        left: 12px;
        right: 12px;
        top: 14px;
        height: 58%;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0 34%, transparent 34% 100%) 0 0 / 100% 8px no-repeat, linear-gradient(90deg, rgba(255, 255, 255, 0.72) 0 52%, transparent 52% 100%) 0 18px / 100% 6px no-repeat, linear-gradient(90deg, rgba(121, 219, 255, 0.42) 0 64%, transparent 64% 100%) 0 34px / 100% 6px no-repeat, linear-gradient(90deg, rgba(255, 255, 255, 0.52) 0 44%, transparent 44% 100%) 0 50px / 100% 6px no-repeat;
        opacity: 0.9;
    }

.scan-target {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid rgba(121, 219, 255, 0.9);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0 18%, transparent 19%);
    box-shadow: 0 0 0 8px rgba(121, 219, 255, 0.08), 0 0 18px rgba(121, 219, 255, 0.45);
    animation: target-pulse 2.6s ease-in-out infinite;
}

.card-a {
    left: 6vw;
    top: 18vh;
    width: 160px;
    height: 98px;
    --duration: 8s;
    --delay: -1s;
    --rotate: -12deg;
}

.card-b {
    right: 8vw;
    top: 16vh;
    width: 138px;
    height: 88px;
    --duration: 9s;
    --delay: -4s;
    --rotate: 8deg;
}

.card-c {
    left: 18vw;
    bottom: 12vh;
    width: 176px;
    height: 106px;
    --duration: 10s;
    --delay: -6s;
    --rotate: 14deg;
}

.card-d {
    right: 16vw;
    bottom: 20vh;
    width: 124px;
    height: 78px;
    --duration: 7s;
    --delay: -2s;
    --rotate: -8deg;
}

.target-a {
    left: 15vw;
    top: 10vh;
    animation-delay: -0.5s;
}

.target-b {
    right: 22vw;
    top: 28vh;
    animation-delay: -1.2s;
}

.target-c {
    left: 62vw;
    bottom: 14vh;
    animation-delay: -1.8s;
}

.left-panel {
    width: 50%;
    background: linear-gradient( 135deg, rgba(43, 31, 120, 0.52) 0%, rgba(43, 31, 120, 0.2) 24%, rgba(43, 31, 120, 0) 42% ), radial-gradient( circle at 18% 18%, rgba(255, 255, 255, 0.42), transparent 22% ), radial-gradient( circle at 88% 16%, rgba(255, 255, 255, 0.18), transparent 24% ), linear-gradient( 155deg, #dcd7ff 0%, var(--purple-soft) 38%, var(--purple) 68%, var(--purple-deep) 100% );
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px 44px;
    position: relative;
    overflow: hidden;
}

    .left-panel::before {
        content: "";
        position: absolute;
        top: -60px;
        right: -60px;
        width: 340px;
        height: 340px;
        background-image: radial-gradient( circle, rgba(255, 255, 255, 0.18) 1.5px, transparent 1.5px );
        background-size: 22px 22px;
        border-radius: 50%;
    }

    .left-panel::after {
        content: "";
        position: absolute;
        bottom: -80px;
        left: -60px;
        width: 280px;
        height: 280px;
        background: #c7c2ff;
        border-radius: 50%;
        opacity: 0.42;
        filter: blur(40px);
    }

.brand {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
    padding: 12px 16px;
    width: fit-content;
    border-radius: 18px;
    backdrop-filter: blur(14px);
    position: relative;
    z-index: 1;
}

.brand-logo {
    width: 250px;
    height: auto;
    object-fit: contain;
    display: block;
}

.panel-tagline,
.scanner-showcase {
    position: relative;
    z-index: 1;
}

    .panel-tagline .sub {
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.88);
        margin-bottom: 10px;
    }

    .panel-tagline h1 {
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: 30px;
        color: var(--white);
        line-height: 1.25;
        margin-bottom: 8px;
    }

    .panel-tagline p {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.76);
        line-height: 1.7;
        max-width: 320px;
    }

.scanner-showcase {
    margin-top: 20px;
    min-height: 300px;
}

.scanner-badge,
.floating-chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 40px rgba(43, 30, 123, 0.22);
}

.scanner-badge {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.badge-top {
    top: 0;
    left: 8px;
}

.badge-right {
    top: 92px;
    right: -8px;
}

.scanner-stage {
    position: relative;
    width: min(100%, 320px);
    margin: 0 auto;
    padding-top: 12px;
}

.scanner-glow {
    position: absolute;
    inset: 34px 28px 18px;
    border-radius: 42px;
    background: radial-gradient( circle at center, rgba(255, 255, 255, 0.26), transparent 58% ), radial-gradient( circle at 50% 80%, rgba(111, 235, 255, 0.28), transparent 38% );
    filter: blur(8px);
}

.scanner-device {
    position: relative;
    width: 210px;
    margin: 22px auto 0;
    padding: 10px;
    border-radius: 28px;
    background: linear-gradient( 180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.1) ), rgba(33, 24, 95, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 28px 60px rgba(30, 17, 96, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.device-notch {
    width: 68px;
    height: 8px;
    margin: 0 auto 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
}

.device-screen {
    padding: 14px 12px 14px;
    border-radius: 20px;
    background: linear-gradient( 180deg, rgba(246, 245, 255, 0.98), rgba(233, 230, 255, 0.96) ), #f3f0ff;
}

.screen-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 11px;
    color: #584bb3;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #3ad28f;
    box-shadow: 0 0 0 6px rgba(58, 210, 143, 0.16);
    animation: pulseDot 1.9s ease-in-out infinite;
}

.scan-frame {
    position: absolute;
    position: relative;
    height: 126px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(108, 99, 255, 0.12), rgba(108, 99, 255, 0.03)), #ffffff;
    border: 1px solid rgba(108, 99, 255, 0.14);
    overflow: hidden;
}

.scan-card {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 126px;
    height: 76px;
    padding: 12px 10px;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(108, 99, 255, 0.2), rgba(108, 99, 255, 0.06)), linear-gradient(180deg, #ffffff, #f7f5ff);
    border: 1px solid rgba(108, 99, 255, 0.14);
    transform: translate(-50%, -50%) rotate(-8deg);
    box-shadow: 0 24px 32px rgba(108, 99, 255, 0.16);
}

.card-stripe {
    width: 32px;
    height: 7px;
    margin-bottom: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, #6c63ff, #8f8aff);
}

.card-line {
    height: 6px;
    margin-bottom: 6px;
    border-radius: 999px;
    background: rgba(84, 73, 184, 0.16);
}

    .card-line.short {
        width: 58%;
    }

    .card-line.small {
        width: 42%;
        margin-bottom: 0;
    }

.scan-line {
    position: absolute;
    left: 12px;
    right: 12px;
    top: 14px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient( 90deg, rgba(111, 235, 255, 0), rgba(111, 235, 255, 0.95), rgba(111, 235, 255, 0) );
    box-shadow: 0 0 16px rgba(111, 235, 255, 0.72);
    animation: scanSweep 2.8s ease-in-out infinite;
}

.scan-corners {
    position: absolute;
    width: 18px;
    height: 18px;
    border-color: rgba(78, 214, 255, 0.95);
    border-style: solid;
    animation: frameBlink 2.8s ease-in-out infinite;
}

.corner-top-left {
    top: 10px;
    left: 10px;
    border-width: 3px 0 0 3px;
    border-top-left-radius: 12px;
}

.corner-top-right {
    top: 10px;
    right: 10px;
    border-width: 3px 3px 0 0;
    border-top-right-radius: 12px;
}

.corner-bottom-left {
    bottom: 10px;
    left: 10px;
    border-width: 0 0 3px 3px;
    border-bottom-left-radius: 12px;
}

.corner-bottom-right {
    right: 10px;
    bottom: 10px;
    border-width: 0 3px 3px 0;
    border-bottom-right-radius: 12px;
}

.scan-results {
    margin-top: 12px;
    display: grid;
    gap: 8px;
}

.result-row {
    display: flex;
    gap: 8px;
}

.result-pill {
    display: block;
    height: 8px;
    border-radius: 999px;
    background: rgba(108, 99, 255, 0.14);
    animation: revealBars 2.8s ease-in-out infinite;
}

    .result-pill.strong {
        width: 42%;
        background: rgba(108, 99, 255, 0.36);
    }

    .result-pill.medium {
        width: 36%;
    }

    .result-pill.short {
        width: 22%;
    }

    .result-pill.long {
        width: 74%;
    }

.floating-chip {
    font-size: 11px;
    font-weight: 700;
    padding: 8px 11px;
}

.chip-icon {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #75f0ba;
    box-shadow: 0 0 0 6px rgba(117, 240, 186, 0.12);
}

.chip-left {
    left: -2px;
    bottom: 74px;
    animation: floatChip 4.2s ease-in-out infinite;
}

.chip-bottom {
    right: 10px;
    bottom: 10px;
    animation: floatChip 4.2s ease-in-out infinite 0.6s;
}

@keyframes scanSweep {
    0%, 100% {
        top: 22px;
        opacity: 0.9;
    }

    50% {
        top: 146px;
        opacity: 1;
    }
}

@keyframes pulseDot {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(58, 210, 143, 0.16);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(58, 210, 143, 0.08);
    }
}

@keyframes frameBlink {
    0%, 100% {
        opacity: 0.75;
    }

    50% {
        opacity: 1;
    }
}

@keyframes revealBars {
    0%, 18% {
        transform: scaleX(0.4);
        transform-origin: left center;
        opacity: 0.45;
    }

    30%, 100% {
        transform: scaleX(1);
        transform-origin: left center;
        opacity: 1;
    }
}

@keyframes floatChip {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes scan-glow {
    from {
        transform: scale(0.95) translateY(0);
    }

    to {
        transform: scale(1.08) translateY(12px);
    }
}

@keyframes grid-pan {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(72px);
    }
}

@keyframes beam-slide-y {
    0% {
        transform: translateY(0);
        opacity: 0.2;
    }

    50% {
        transform: translateY(420px);
        opacity: 1;
    }

    100% {
        transform: translateY(0);
        opacity: 0.2;
    }
}

@keyframes beam-slide-x {
    0% {
        transform: translateX(0);
        opacity: 0.18;
    }

    50% {
        transform: translateX(-360px);
        opacity: 1;
    }

    100% {
        transform: translateX(0);
        opacity: 0.18;
    }
}

@keyframes card-float {
    0%, 100% {
        transform: translateY(0) rotate(var(--rotate, 0deg));
        opacity: 0.34;
    }

    50% {
        transform: translateY(-18px) rotate(var(--rotate, 0deg));
        opacity: 0.76;
    }
}

@keyframes target-pulse {
    0%, 100% {
        transform: scale(0.92);
        opacity: 0.72;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

.right-panel {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
}

.site-footer {
    width: 100%;
    border-top: 1px solid rgba(23, 50, 77, 0.08);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(10px);
}

.site-footer-inner {
    width: min(1500px, calc(100% - 32px));
    margin: 0 auto;
    padding: 12px 0;
    text-align: center;
    color: var(--mid);
    font-size: 13px;
    font-weight: 500;
}

.footer-brand-link {
    color: #d72638;
    font-weight: 700;
    text-decoration: underline;
}

    .footer-brand-link:hover {
        text-decoration: underline;
    }

.mobile-brand {
    display: none;
}

.mobile-brand-logo {
    width: 210px;
    height: auto;
    display: block;
}

.form-card {
    background: var(--white);
    border-radius: 24px;
    padding: 32px 36px;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 24px 64px rgba(108, 99, 255, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
    border-top: 4px solid var(--yellow);
    animation: slideUp 0.55s cubic-bezier(0.22, 0.84, 0.44, 1) both;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-header {
    margin-bottom: 20px;
}

    .form-header .step-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: var(--purple-lt);
        color: var(--purple);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 5px 12px;
        border-radius: 20px;
        margin-bottom: 14px;
    }

    .form-header h2 {
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: 26px;
        color: var(--dark);
        margin-bottom: 6px;
    }

    .form-header p {
        font-size: 14px;
        color: var(--mid);
    }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.form-group {
    /* margin-bottom: 10px; */
}

    .form-group label {
        display: block;
        font-size: 12.5px;
        font-weight: 600;
        color: var(--mid);
        margin-bottom: 5px;
        letter-spacing: 0.3px;
    }

.input-wrap {
    position: relative;
}

    .input-wrap .icon {
        position: absolute;
        left: 13px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        align-items: center;
        opacity: 0.4;
    }

        .input-wrap .icon svg {
            width: 16px;
            height: 16px;
        }

.form-group input {
    width: 100%;
    padding: 11px 12px 11px 38px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: var(--dark);
    background: var(--light);
    outline: none;
    transition: border-color 0.22s, box-shadow 0.22s, background 0.22s;
}

    .form-group input::placeholder {
        color: #b0b2c3;
    }

    .form-group input:focus {
        border-color: var(--purple);
        background: var(--white);
        box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.1);
    }

.input-wrap input:focus ~ .icon {
    opacity: 0.7;
}

.text-danger {
    color: var(--danger);
    font-size: 11.5px;
    margin-top: 5px;
    display: block;
    min-height: 14px;
}

.password-wrap {
    position: relative;
}

.toggle-pass {
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    opacity: 0.35;
    background: none;
    border: none;
    padding: 0;
    display: flex;
}

    .toggle-pass:hover {
        opacity: 0.7;
    }

    .toggle-pass svg {
        width: 17px;
        height: 17px;
    }

.divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px 0;
    color: #c5c7d8;
    font-size: 12px;
}

    .divider::before,
    .divider::after {
        content: "";
        flex: 1;
        height: 1px;
        background: var(--border);
    }

.btn-submit {
    width: 100%;
    padding: 13px;
    margin-top: 25px;
    border: none;
    border-radius: var(--radius);
    background: var(--yellow);
    color: var(--dark);
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s, transform 0.18s, box-shadow 0.2s;
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.35);
}

    .btn-submit:hover {
        background: var(--yellow-dk);
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(255, 193, 7, 0.45);
    }

    .btn-submit:active {
        transform: translateY(0);
    }

    .btn-submit svg {
        width: 18px;
        height: 18px;
    }

.login-link {
    text-align: center;
    margin-top: 12px;
    font-size: 13.5px;
    color: var(--mid);
}

    .login-link a {
        color: var(--purple);
        font-weight: 600;
        text-decoration: none;
    }

        .login-link a:hover {
            text-decoration: underline;
        }

@media (max-width: 768px) {
    .register-shell {
        min-height: auto;
        padding: 0;
    }

    .register-layout {
        width: 100%;
        min-height: 100dvh;
        display: block;
        border: none;
        border-radius: 0;
        box-shadow: none;
    }

    .left-panel {
        display: none;
    }

    .right-panel {
        width: 100%;
        min-height: 100vh;
        justify-content: flex-start;
        align-items: stretch;
        padding: 0;
        background: var(--white);
    }

    .mobile-brand {
        display: flex;
        justify-content: flex-start;
        padding: 20px 20px 8px;
    }

    .form-card {
        max-width: none;
        min-height: calc(100vh - 88px);
        border-radius: 0;
        box-shadow: none;
        border-top: none;
        padding: 16px 20px 28px;
    }

    .form-header {
        margin-bottom: 24px;
    }

        .form-header h2 {
            font-size: 24px;
        }

        .form-header p {
            font-size: 12px;
        }

    .form-group label {
        font-size: 10.5px;
    }

    .form-group input {
        font-size: 12px;
    }

    .divider {
        font-size: 10px;
    }

    .login-link,
    .login-link a,
    .text-danger {
        font-size: 11.5px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .site-footer-inner {
        width: calc(100% - 24px);
        padding: 10px 0;
        font-size: 12px;
    }
}

@media (max-width: 1050px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
