:root {
    --primaryl: #eef0ff;
    --secondaryl: #fff5e8;
    --white: #fff;
    --secondarym: 0 8px 32px rgba(46, 54, 253, .12);
}

/* PAGE WRAPPER */
.page-wrap {
    min-height: 100vh;
    background: linear-gradient(150deg, #040c1e 0%, var(--dark) 48%, #120e30 100%);
    position: relative;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.o1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    opacity: .14;
    top: -200px;
    right: -150px;
}

.o2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    opacity: .09;
    bottom: -120px;
    left: -80px;
}

.o3 {
    width: 280px;
    height: 280px;
    background: #7c3aed;
    opacity: .08;
    top: 40%;
    left: 42%;
}

/* grid overlay */
.grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(46, 54, 253, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(46, 54, 253, .05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 40%, transparent 100%);
}

/* LEFT PANEL */
.demo-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(241, 137, 17, .15);
    border: 1px solid rgba(241, 137, 17, .3);
    color: #fcd34d;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.demo-eyebrow .dot {
    width: 7px;
    height: 7px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .6;
        transform: scale(1.3)
    }
}

.demo-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #fff;
    margin-bottom: 16px;
}

.demo-title .t-s {
    color: var(--secondary);
}

.demo-title .t-b {
    color: #93c5fd;
}

.demo-sub {
    font-size: .96rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.8;
    /* max-width: 480px; */
    margin-bottom: 32px;
}

/* feature list */
.feat-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    transition: all .3s;
}

.feat-item:hover {
    background: rgba(46, 54, 253, .15);
    border-color: rgba(46, 54, 253, .35);
}

.feat-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex-shrink: 0;
}

.feat-item h6 {
    font-weight: 600;
    font-size: .85rem;
    color: #fff;
    margin-bottom: 3px;
}

.feat-item p {
    font-size: .75rem;
    color: rgba(255, 255, 255, .5);
    margin: 0;
    line-height: 1.4;
}

/* trust badges */
.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.tbadge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .55);
    padding: 5px 12px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50px;
}

.tbadge i {
    font-size: .85rem;
}

/* FORM CARD */
.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .35);
}

@media(max-width:575px) {
    .form-card {
        padding: 24px 20px;
    }
}

.form-card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.form-card-sub {
    font-size: .84rem;
    color: var(--gray-600);
    margin-bottom: 14px;
}

/* form fields */
.f-label {
    /* font-family: 'Poppins', sans-serif; */
    /* font-weight: 500; */
    font-size: .78rem;
    color: var(--gray-800);
    margin-bottom: 4px;
    display: block;
}

.f-label .req {
    color: var(--secondary);
}

.f-input {
    width: 100%;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 10px 14px;
    font-family: 'Inter', sans-serif;
    font-size: .88rem;
    color: var(--dark);
    background: var(--gray-50);
    transition: all .25s;
    outline: none;
}

.f-input:focus {
    border-color: var(--primary);
    background: var(--primaryl);
    box-shadow: 0 0 0 3px rgba(46, 54, 253, .1);
}

.f-input::placeholder {
    color: var(--gray-600);
}

.f-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7a99' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    cursor: pointer;
}

.phone-wrap {
    display: flex;
    gap: 8px;
}

.phone-code {
    width: 120px;
    flex-shrink: 0;
}

.phone-num {
    flex: 1;
}

.f-group {
    margin-bottom: 2px;
}

/* submit btn */
.btn-submit {
    width: 100%;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    padding: 14px;
    /* font-family: 'Poppins', sans-serif; */
    font-weight: 600;
    font-size: .95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all .25s;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), transparent);
    transition: left .5s;
}

.btn-submit:hover {
    background: #1a23e8;
    box-shadow: 0 8px 28px rgba(46, 54, 253, .4);
    transform: translateY(-1px);
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit .spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, .3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin .7s linear infinite;
    display: none;
}

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

.btn-submit.loading .spinner {
    display: block;
}

.btn-submit.loading .btn-text {
    opacity: 0;
}

/* form footer note */
.form-note {
    font-size: .74rem;
    color: var(--gray-600);
    text-align: center;
    margin-top: 14px;
    line-height: 1.6;
}

.form-note a {
    color: var(--primary);
    text-decoration: none;
}

/* progress steps */
.step-bar {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 22px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 6px;
    /* flex: 1; */
    padding: 0;
}

.step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: .75rem;
    flex-shrink: 0;
    border: 2px solid;
    transition: all .3s;
}

.step-dot.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.step-dot.done {
    background: #22c55e;
    border-color: #22c55e;
    color: #fff;
}

.step-dot.pending {
    background: var(--gray-100);
    border-color: var(--gray-200);
    color: var(--gray-600);
}

.step-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .72rem;
}

.step-label.active {
    color: var(--primary);
}

.step-label.pending {
    color: var(--gray-600);
}

.step-line {
    flex: 1;
    height: 2px;
    background: var(--gray-200);
    border-radius: 2px;
    margin: 0 6px;
}

.step-line.done {
    background: var(--primary);
}

/* OTP MODAL */
.otp-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

.otp-overlay.show {
    opacity: 1;
    pointer-events: all;
}

.otp-modal {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    max-width: 440px;
    width: 92%;
    text-align: center;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .35);
    transform: scale(.95) translateY(10px);
    transition: all .3s;
}

.otp-overlay.show .otp-modal {
    transform: scale(1) translateY(0);
}

.otp-icon {
    width: 64px;
    height: 64px;
    background: var(--primaryl);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 16px;
}

.otp-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 6px;
}

.otp-sub {
    font-size: .88rem;
    color: var(--gray-600);
    margin-bottom: 28px;
    line-height: 1.6;
}

.otp-sub strong {
    color: var(--dark);
}

/* OTP input boxes */
.otp-inputs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 24px;
}

.otp-box {
    width: 58px;
    height: 60px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    text-align: center;
    color: var(--dark);
    background: var(--gray-50);
    transition: all .25s;
    outline: none;
}

.otp-box:focus {
    border-color: var(--primary);
    background: var(--primaryl);
    box-shadow: 0 0 0 3px rgba(46, 54, 253, .1);
}

.otp-box.filled {
    border-color: var(--primary);
    background: var(--primaryl);
}

.otp-box.error {
    border-color: #ef4444;
    background: #fff0f0;
    animation: shake .3s;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0)
    }

    25%,
    75% {
        transform: translateX(-4px)
    }

    50% {
        transform: translateX(4px)
    }
}

.otp-error {
    font-size: .8rem;
    color: #ef4444;
    margin-bottom: 14px;
    display: none;
}

.otp-error.show {
    display: block;
}

.btn-verify {
    width: 100%;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    padding: 13px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: .93rem;
    cursor: pointer;
    transition: all .25s;
    margin-bottom: 14px;
}

.btn-verify:hover {
    background: #1a23e8;
    box-shadow: 0 6px 20px rgba(46, 54, 253, .4);
}

.otp-resend {
    font-size: .8rem;
    color: var(--gray-600);
}

.otp-resend a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.otp-resend a.disabled {
    color: var(--gray-600);
    pointer-events: none;
}

.otp-timer {
    font-weight: 600;
    color: var(--secondary);
}

.btn-otp-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--gray-600);
    cursor: pointer;
    transition: color .2s;
}

.btn-otp-close:hover {
    color: var(--dark);
}

.otp-modal-wrap {
    position: relative;
}

/* TRUST SECTION */
.trust-section {
    background: rgba(255, 255, 255, .03);
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 28px 0;
}

.trust-label {
    font-size: .72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
    letter-spacing: .08em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 18px;
}

.brand-scroll {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
    justify-content: center;
    align-items: center;
}

.brand-pill {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50px;
    padding: 8px 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .75rem;
    color: rgba(255, 255, 255, .5);
}

.brand-pill:hover {
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .8);
}

.soc {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .5);
    font-size: .9rem;
    text-decoration: none;
    transition: all .2s;
    margin-right: 6px;
}

.soc:hover {
    background: var(--primary);
    color: #fff;
}

/* select2 override */
select.f-input option {
    font-family: 'Inter', sans-serif;
}

/* @media(max-width:991px) {
    .right-panel {
        padding: 32px 24px 40px;
    }
} */