/* ─── AMBIENT GLOW ───────────────────────────────────── */
.amb {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse 50% 70% at 10% 50%,
            rgba(232, 184, 75, 0.07) 0%,
            transparent 65%),
        radial-gradient(ellipse 40% 40% at 90% 10%,
            rgba(139, 92, 246, 0.06) 0%,
            transparent 60%),
        radial-gradient(ellipse 35% 50% at 65% 90%,
            rgba(0, 212, 255, 0.04) 0%,
            transparent 60%);
}

.left {
    position: sticky;
    top: 0;
    height: 100dvh;
    overflow: hidden;
    background: #000;
}

.slides {
    display: flex;
    height: 100%;
    transition: transform 0.9s cubic-bezier(0.77, 0, 0.18, 1);
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
}

.slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55) saturate(1.2);
}

.bg1 {
    background: linear-gradient(145deg,
            #08001a,
            #160038,
            #3a0070,
            rgba(139, 92, 246, 0.2));
}

.bg2 {
    background: linear-gradient(145deg,
            #001220,
            #003358,
            #007090,
            rgba(0, 212, 255, 0.2));
}

.bg3 {
    background: linear-gradient(145deg,
            #12000a,
            #30001a,
            #700040,
            rgba(255, 64, 128, 0.2));
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: OP 8s ease-in-out infinite alternate;
}

.oa {
    width: 380px;
    height: 380px;
    top: -60px;
    left: -60px;
}

.ob {
    width: 260px;
    height: 260px;
    bottom: 100px;
    right: -40px;
    animation-delay: -3s;
}

.oc {
    width: 180px;
    height: 180px;
    top: 45%;
    left: 38%;
    animation-delay: -5.5s;
}

@keyframes OP {
    from {
        transform: scale(1) translate(0, 0);
    }

    to {
        transform: scale(1.35) translate(22px, -18px);
    }
}

/* .slide::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.35) 45%,
            transparent 75%),
        linear-gradient(to right, rgba(0, 0, 0, 0.15) 0%, transparent 60%);
} */

/* Slide content */
.s-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 44px 44px 52px;
    z-index: 2;
}

.s-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(232, 184, 75, 0.38);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--gold-lt);
    backdrop-filter: blur(10px);
    background: rgba(232, 184, 75, 0.08);
    margin-bottom: 20px;
}

.s-tag::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    display: inline-block;
}

.s-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
}

.s-title em {
    font-style: normal;
    color: var(--gold-lt);
}

.s-desc {
    margin-top: 14px;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.72;
    max-width: 380px;
}

.s-stats {
    display: flex;
    gap: 36px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.st-n {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold-lt);
}

.st-l {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 3px;
    letter-spacing: 0.4px;
}

/* Slider chrome */
.s-logo {
    position: absolute;
    top: 28px;
    left: 32px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 11px;
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.logo-g {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: linear-gradient(135deg,
            var(--gold-dk),
            var(--gold),
            var(--gold-lt));
    display: grid;
    place-items: center;
    font-size: 18px;
    box-shadow: 0 4px 20px rgba(232, 184, 75, 0.45);
}

.s-ctrls {
    position: absolute;
    top: 28px;
    right: 28px;
    z-index: 10;
    display: flex;
    gap: 9px;
}

.cb {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(232, 184, 75, 0.25);
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    color: var(--gold-lt);
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 14px;
    transition:
        background 0.2s,
        transform 0.18s;
}

.cb:hover {
    background: rgba(232, 184, 75, 0.2);
    transform: scale(1.1);
}

.s-dots {
    position: absolute;
    bottom: 22px;
    right: 30px;
    z-index: 10;
    display: flex;
    gap: 6px;
}

.sdot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.3s;
}

.sdot.on {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

.s-prog {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
    z-index: 10;
}

.s-pf {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dk), var(--gold-lt));
    width: 0%;
    transition: width 0.12s linear;
}

/* ═══════════════════════════════════════════════════════
   RIGHT — FORM PANEL
═══════════════════════════════════════════════════════ */
.right {
    background: var(--panel);
    border-left: 1px solid var(--border);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    scroll-behavior: smooth;
}

.right::-webkit-scrollbar {
    width: 4px;
}

.right::-webkit-scrollbar-thumb {
    background: rgba(232, 184, 75, 0.2);
    border-radius: 2px;
}

.form-wrap {
    flex: 1;
    padding: 52px 56px;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    animation: FI 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes FI {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* ─── STEP TRACK ─────────────────────────────────────── */
.step-track {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
}

.stp {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stp-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 13px;
    font-weight: 800;
    border: 2px solid var(--border2);
    color: var(--muted2);
    flex-shrink: 0;
    transition: all 0.4s;
}

.stp-num.active {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 0 5px rgba(232, 184, 75, 0.1);
}

.stp-num.done {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
    font-size: 15px;
}

.stp-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.stp-sub {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--muted2);
    transition: color 0.4s;
}

.stp-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--muted2);
    transition: color 0.4s;
}

.stp-sub.active,
.stp-name.active {
    color: var(--gold);
}

.stp-sub.done,
.stp-name.done {
    color: rgba(232, 184, 75, 0.45);
}

.step-line {
    flex: 1;
    height: 1px;
    background: var(--border2);
    margin: 0 14px;
    transition: background 0.4s;
}

.step-line.done {
    background: rgba(232, 184, 75, 0.3);
}

/* ─── PROGRESS BAR ───────────────────────────────────── */
.prog-row {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(232, 184, 75, 0.05);
    border: 1px solid rgba(232, 184, 75, 0.1);
    border-radius: 50px;
    padding: 9px 20px;
    margin-bottom: 36px;
}

.prog-txt {
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    white-space: nowrap;
}

.prog-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    overflow: hidden;
}

.prog-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dk), var(--gold-lt));
    border-radius: 2px;
    transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.prog-pct {
    font-size: 12px;
    font-weight: 800;
    color: var(--gold);
    white-space: nowrap;
}

/* ─── STEP CONTENT ───────────────────────────────────── */
.step-view {
    display: none;
}

.step-view.show {
    display: block;
    animation: SVI 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes SVI {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.f-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(30px, 3.5vw, 42px);
    font-weight: 700;
    color: var(--text);
    line-height: 1.12;
}

.f-title span {
    color: var(--gold-lt);
}

.f-sub {
    margin-top: 10px;
    font-size: 15px;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.7;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border2);
    margin-bottom: 28px;
}

/* ─── FIELD STYLES ───────────────────────────────────── */
.fields {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.f {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.f>label {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    color: rgba(232, 184, 75, 0.7);
    display: flex;
    align-items: center;
    gap: 7px;
}

.lbadge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.lbadge.req {
    background: rgba(255, 64, 128, 0.15);
    color: var(--pink);
    border: 1px solid rgba(255, 64, 128, 0.2);
}

.lbadge.opt {
    background: rgba(255, 255, 255, 0.06);
    color: var(--muted2);
    border: 1px solid var(--border2);
}

.f input,
.f select {
    background: var(--surface);
    border: 1.5px solid var(--border2);
    border-radius: var(--r);
    padding: 14px 18px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14.5px;
    font-weight: 400;
    color: var(--text);
    outline: none;
    transition:
        border-color 0.22s,
        box-shadow 0.22s,
        background 0.22s;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
}

.f input::placeholder {
    color: rgba(255, 255, 255, 0.16);
}

.f input:focus,
.f select:focus {
    border-color: rgba(232, 184, 75, 0.5);
    box-shadow: 0 0 0 4px rgba(232, 184, 75, 0.07);
    background: rgba(232, 184, 75, 0.025);
}

.f select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='rgba(232,184,75,.55)' d='M7 9.5L2 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.f select option {
    background: #161626;
    color: #eee;
}

/* Icon wrapper */
.f-iw {
    position: relative;
}

.f-iw input {
    padding-left: 46px;
}

.f-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 17px;
    pointer-events: none;
    z-index: 1;
}

.f-eye {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--muted);
    cursor: pointer;
    font-size: 16px;
    padding: 0;
    transition: color 0.2s;
}

.f-eye:hover {
    color: var(--gold);
}

.f-iw input.has-eye {
    padding-right: 44px;
}

/* Password strength */
.pwd-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.pw-segs {
    display: flex;
    gap: 5px;
    flex: 1;
}

.pw-seg {
    flex: 1;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.07);
    transition: background 0.3s;
}

.pw-lbl {
    font-size: 11px;
    font-weight: 600;
    color: var(--muted2);
    white-space: nowrap;
}

/* Terms */
.terms-wrap {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    background: rgba(232, 184, 75, 0.04);
    border: 1px solid rgba(232, 184, 75, 0.1);
    border-radius: var(--r);
}

.terms-wrap input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
}

.terms-wrap label {
    font-size: 13.5px;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.65;
    cursor: pointer;
}

.terms-wrap a {
    color: var(--gold-lt);
    text-decoration: none;
    font-weight: 600;
}

.terms-wrap a:hover {
    text-decoration: underline;
}

/* Info callout */
.callout {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(232, 184, 75, 0.04);
    border: 1px solid rgba(232, 184, 75, 0.1);
    border-left: 3px solid var(--gold);
    border-radius: var(--r);
    padding: 16px 18px;
}

.callout-icon {
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 1px;
}

.callout p {
    font-size: 13.5px;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.65;
}

.callout strong {
    color: var(--gold-lt);
    font-weight: 700;
}

/* ─── SELFIE AREA ────────────────────────────────────── */
.selfie-shell {
    border: 2px dashed rgba(232, 184, 75, 0.2);
    border-radius: 20px;
    background: rgba(232, 184, 75, 0.02);
    transition:
        border-color 0.3s,
        background 0.3s;
    overflow: hidden;
}

.selfie-shell:hover {
    border-color: rgba(232, 184, 75, 0.4);
    background: rgba(232, 184, 75, 0.04);
}

.selfie-idle {
    padding: 40px 32px;
    text-align: center;
}

.si-emoji {
    font-size: 64px;
    display: block;
    margin-bottom: 16px;
    animation: BNC 2.2s ease-in-out infinite;
}

@keyframes BNC {

    0%,
    100% {
        transform: translateY(0) rotate(-3deg);
    }

    50% {
        transform: translateY(-10px) rotate(3deg);
    }
}

.si-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.si-hint {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 24px;
}

.si-hint strong {
    color: var(--gold-lt);
}

#camPrev {
    width: 100%;
    display: none;
    object-fit: cover;
    /* max-height: 320px; */
    border-bottom: 1px solid var(--border2);
}

#snapC {
    width: 100%;
    display: none;
    object-fit: cover;
    border-bottom: 2px solid var(--gold);
}

.cam-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 20px;
}

#btnCam {
    padding: 13px 28px;
    border-radius: var(--r);
    border: none;
    cursor: pointer;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    background: linear-gradient(135deg,
            var(--gold-dk),
            var(--gold),
            var(--gold-lt));
    color: #000;
    box-shadow: 0 8px 24px rgba(232, 184, 75, 0.28);
    transition:
        transform 0.18s,
        box-shadow 0.18s;
}

#btnCam:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(232, 184, 75, 0.4);
}

#btnSnap {
    padding: 13px 28px;
    border-radius: var(--r);
    border: none;
    cursor: pointer;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    background: var(--pink);
    color: #fff;
    box-shadow: 0 8px 24px rgba(255, 64, 128, 0.25);
    transition:
        transform 0.18s,
        box-shadow 0.18s;
    display: none;
}

#btnSnap:hover {
    transform: translateY(-2px);
}

#btnRetake {
    padding: 13px 22px;
    border-radius: var(--r);
    border: 1px solid var(--border2);
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition:
        border-color 0.2s,
        color 0.2s;
    display: none;
}

#btnRetake:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.snap-ok {
    text-align: center;
    padding: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #4ade80;
    display: none;
}

.snap-ok i {
    margin-right: 6px;
}

/* Privacy badges */
.priv-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.priv-item {
    background: rgba(232, 184, 75, 0.04);
    border: 1px solid rgba(232, 184, 75, 0.09);
    border-radius: var(--r);
    padding: 14px 16px;
    text-align: center;
}

.priv-item .pi {
    font-size: 24px;
    display: block;
    margin-bottom: 6px;
}

.priv-item p {
    font-size: 11.5px;
    font-weight: 500;
    color: var(--muted);
    line-height: 1.4;
}

/* ─── NAV BUTTONS ────────────────────────────────────── */
.nav-row {
    display: flex;
    gap: 14px;
    margin-top: 28px;
}

.btn-back {
    padding: 15px 28px;
    border-radius: var(--r);
    border: 1.5px solid var(--border2);
    background: transparent;
    color: var(--muted);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition:
        border-color 0.2s,
        color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-back:hover {
    border-color: rgba(232, 184, 75, 0.3);
    color: var(--gold);
}

.btn-next {
    flex: 1;
    padding: 16px;
    border-radius: var(--r);
    border: none;
    background: linear-gradient(135deg,
            var(--gold-dk) 0%,
            var(--gold) 50%,
            var(--gold-lt) 100%);
    color: #000;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    letter-spacing: 0.2px;
    box-shadow: 0 8px 28px rgba(232, 184, 75, 0.28);
    transition:
        transform 0.18s,
        box-shadow 0.18s;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-next::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.22s;
}

.btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(232, 184, 75, 0.42);
}

.btn-next:hover::before {
    opacity: 1;
}

.btn-next:active {
    transform: none;
}

.login-note {
    text-align: center;
    margin-top: 16px;
    font-size: 13.5px;
    font-weight: 400;
    color: var(--muted);
}

.login-note a {
    color: var(--gold-lt);
    font-weight: 700;
    text-decoration: none;
}

.login-note a:hover {
    text-decoration: underline;
}

/* ─── SUCCESS ────────────────────────────────────────── */
#stepDone {
    text-align: center;
}

.done-emoji {
    font-size: 80px;
    display: block;
    margin: 0 auto 20px;
    animation: BNC 1.8s ease-in-out infinite;
}

.done-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 28px auto 0;
    max-width: 380px;
}

.done-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(232, 184, 75, 0.05);
    border: 1px solid rgba(232, 184, 75, 0.1);
    border-radius: var(--r);
    padding: 16px 18px;
    text-align: left;
}

.done-item span:first-child {
    font-size: 24px;
    flex-shrink: 0;
}

.done-item p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.55;
}

.terms-wrap {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 8px;
}

.terms-wrap label {
    flex: 1;
}

.terms-wrap .text-danger {
    width: 100%;
    margin-left: 24px;
    margin-top: 4px;
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1100px) {
    :root {
        --sidebar: 42%;
    }
}

@media (max-width: 900px) {
    body {
        overflow: auto;
    }

    .layout {
        grid-template-columns: 1fr;
        min-height: 100dvh;
    }

    .left {
        position: relative;
        height: 55vw;
        min-height: 444px;
        max-height: 380px;
        width: 100%;
    }

    .right {
        min-height: auto;
    }

    .s-body {
        padding: 28px 24px 36px;
    }

    .s-stats {
        gap: 22px;
        margin-top: 18px;
        padding-top: 16px;
    }

    .st-n {
        font-size: 22px;
    }

    .amb {
        display: none;
    }
}

@media (max-width: 640px) {
    .form-wrap {
        padding: 32px 24px;
    }

    .frow {
        grid-template-columns: 1fr;
    }

    .step-track {
        gap: 0;
    }

    .stp-info {
        display: none;
    }

    .step-line {
        margin: 0 6px;
    }

    .priv-row {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .nav-row {
        flex-direction: column;
    }

    .btn-back {
        justify-content: center;
    }

    .s-title {
        font-size: 26px;
    }
}

@media (max-width: 400px) {
    .form-wrap {
        padding: 24px 18px;
    }

    .priv-row {
        grid-template-columns: 1fr 1fr;
    }
}