  :root{
        --bg1:#2196f3;
        --bg2:#607D8B;
        --card:#ffffff;
        --ink:#111827;
        --muted:#6b7280;
        --line: rgba(17,24,39,.12);
        --shadow: 0 18px 40px rgba(0,0,0,.14);
        --radius: 16px;

        --input-h: 40px;
        --icon-left: 12px;
        --icon-pad: 38px;
    }

    .reg-bg{
        min-height: calc(100vh - 120px);
        display:flex;
        align-items:center;
        justify-content:center;
        padding: 1.2rem 0;
        background:
            radial-gradient(900px 500px at 15% 20%, rgba(255,255,255,.14), transparent 60%),
            radial-gradient(800px 420px at 85% 80%, rgba(255,255,255,.10), transparent 60%),
            linear-gradient(135deg, var(--bg1), var(--bg2));
    }

    .reg-shell{
        width: min(1200px, 96vw);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        overflow:hidden;
        border: 1px solid rgba(255,255,255,.25);
        background: rgba(255,255,255,.10);
        backdrop-filter: blur(10px);
    }

    .reg-card{
        background: var(--card);
        border-radius: 14px;
        margin: 14px;
        padding: 18px;
        box-shadow: 0 12px 26px rgba(17,24,39,.10);
        border: 1px solid rgba(17,24,39,.06);
    }

    .reg-title{
        font-weight: 900;
        color: var(--ink);
        letter-spacing: .4px;
        font-size: 1.05rem;
        margin-bottom: .25rem;
    }

    .form-label{
        font-size:.78rem;
        color: black;
        font-weight: 700;
        margin-bottom: .25rem;
    }

    .row.g-3{
        --bs-gutter-y: .65rem;
        --bs-gutter-x: .85rem;
    }

    .field{ position: relative; }

    .field i{
        position:absolute;
        left: var(--icon-left);
        top: 0;
        height: var(--input-h);
        display:flex;
        align-items:center;
        color: rgba(17,24,39,.45);
        font-size: 14px;
        z-index: 2;
        pointer-events:none;
    }

    .field .form-control,
    .field .form-select{
        height: var(--input-h);
        border-radius: 10px;
        padding-left: var(--icon-pad);
        border: 1px solid var(--line);
        background: #fff;
        font-size: .9rem;
    }

    .field .form-control:focus,
    .field .form-select:focus{
        border-color: rgba(63,81,181,.55);
        box-shadow: 0 0 0 .18rem rgba(63,81,181,.12);
    }

    .btn-brand{
        height: 40px;
        border-radius: 10px;
        border: 0;
        color:#fff;
        font-weight: 800;
        background: #3F51B5;
        box-shadow: 0 10px 18px rgba(63,81,181,.18);
    }

    .steps{ display:flex; gap:8px; align-items:center; margin-bottom:10px; }
    .step-pill{
        display:flex; align-items:center; gap:8px;
        padding: 6px 10px;
        border-radius: 999px;
        border: 1px solid rgba(17,24,39,.12);
        background: rgba(17,24,39,.03);
        color: rgba(17,24,39,.75);
        font-weight: 800;
        font-size: .82rem;
    }
    .step-pill .num{
        width: 22px; height: 22px;
        border-radius: 50%;
        display:flex; align-items:center; justify-content:center;
        font-size: .82rem;
        background: rgba(17,24,39,.08);
        color: rgba(17,24,39,.85);
    }
    .step-pill.active{
        background: rgba(63,81,181,.10);
        border-color: rgba(63,81,181,.22);
        color: rgba(17,24,39,.95);
    }
    .step-pill.active .num{ background:#3F51B5; color:#fff; }

    .was-validated .form-control:invalid,
    .form-control.is-invalid,
    .was-validated .form-select:invalid,
    .form-select.is-invalid{
        border-color: #dc3545 !important;
        box-shadow: none !important;
        background-image: none !important;
    }

    .was-validated .form-control:valid,
    .form-control.is-valid,
    .was-validated .form-select:valid,
    .form-select.is-valid{
        border-color: #198754 !important;
        box-shadow: none !important;
        background-image: none !important;
    }

    .was-validated .form-control:invalid ~ .invalid-feedback,
    .was-validated .form-select:invalid ~ .invalid-feedback{
        display:block;
    }

      /* step 2 only */
    .divider{
        border-top: 1px dashed rgba(17,24,39,.18);
        margin: .7rem 0 .8rem;
    }

    .btn-ghost{
        height: 40px;
        border-radius: 10px;
        border: 1px solid rgba(17,24,39,.14);
        background: #fff;
        color: rgba(17,24,39,.85);
        font-weight: 800;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .field-languages i{
        top: 50%;
        height: auto;
        transform: translateY(-50%);
    }

    .language-pill-box{
        min-height: 44px;
        height: auto !important;
        padding-left: 40px !important;
        padding-top: 6px;
        padding-bottom: 6px;
        cursor: text;
    }

    .pill-input{
        border: none;
        outline: none;
        flex: 1;
        min-width: 180px;
        padding: 4px 0;
        background: transparent;
    }

    .language-pill{
        display: inline-flex;
        align-items: center;
        background: #e9f2ff;
        color: #0d6efd;
        border: 1px solid #b6d4fe;
        border-radius: 50px;
        padding: 4px 10px;
        font-size: 0.875rem;
        line-height: 1.2;
    }

    .language-pill button{
        border: none;
        background: transparent;
        color: #0d6efd;
        margin-left: 6px;
        font-size: 14px;
        cursor: pointer;
        line-height: 1;
        padding: 0;
    }

    .language-pill button:hover{
        color: #842029;
    }

    #languageField.is-invalid .language-pill-box{
        border-color: #dc3545 !important;
    }

    #languageField.is-valid .language-pill-box{
        border-color: #198754 !important;
    }

    #languageError{
        display:none;
    }

    #languageField.is-invalid #languageError{
        display:block !important;
    }


            body {
            font-family: Arial, Helvetica, sans-serif;
            color: #111;
        }

        a {
            text-decoration: none;
        }

        .top-header {
            background: #fff;
            border-bottom: 1px solid #ddd;
        }

        .logo-img {
            max-height: 60px;
            width: auto;
        }

        .header-links a {
            color: #1f2a44;
            font-weight: 500;
            margin-left: 20px;
        }

        .header-links a:hover {
            color: #0d6efd;
        }

        .main-wrapper {
            padding: 30px 0 20px;
        }

        .section-card {
            background: #fff;
            border: 1px solid #d9d9d9;
            border-radius: 4px;
            overflow: hidden;
            height: 100%;
        }

        .ad-box,
        .thumb-box,
        .main-box {
            background: #fff;
            border: 1px solid #d9d9d9;
            border-radius: 4px;
            overflow: hidden;
        }

        .ad-box img,
        .thumb-box img,
        .main-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }



        .about-box {
            background: #fff;
            border: 1px solid #d9d9d9;
            border-radius: 4px;
            padding: 20px;
            min-height: 290px;
        }

   .about-box h2 {
    position: relative;
    display: inline-block;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.about-box h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 90px;
    height: 6px;
    border-radius: 10px;
    background: linear-gradient(90deg, #f59e0b, #f97316);
}

        .about-box p {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 12px;
        }

        .time-box {
            font-size: 1.5rem;
            font-weight: 700;
            text-align: right;
            margin-bottom: 12px;
            color: #000;
        }

        .footer-bar {
            background: #eee;
            border-top: 1px solid #ddd;
            margin-top: 25px;
            padding: 14px 0;
        }

        .payment-icons img {
            height: 34px;
            width: auto;
            margin-right: 10px;
            background: #fff;
            padding: 3px 6px;
            border-radius: 4px;
            border: 1px solid #ddd;
        }

        .footer-links a {
            color: #1f2a44;
            margin: 0 14px;
            font-size: 15px;
        }

        .footer-links a:hover {
            color: #0d6efd;
        }

        @media (max-width: 991.98px) {
            .logo-wrap,
            .header-links {
                text-align: center !important;
            }

            .header-links {
                margin-top: 10px;
            }

            .header-links a {
                margin: 0 10px;
            }

            .time-box {
                text-align: left;
                font-size: 1.2rem;
                margin-top: 10px;
            }

            .main-image {
                height: 220px;
            }

            .right-thumb {
                height: 180px;
            }

            .about-box h2 {
                font-size: 1.6rem;
            }

            .about-box p {
                font-size: 1rem;
            }
        }

        @media (max-width: 767.98px) {
            .top-header .container {
                padding-top: 10px;
                padding-bottom: 10px;
            }

            .logo-img {
                max-height: 55px;
            }

            .ad-small,
            .main-image,
            .right-thumb {
                height: auto;
            }


            .footer-content {
                text-align: center;
            }

            .payment-icons {
                margin-bottom: 12px;
            }

            .footer-links a {
                display: inline-block;
                margin: 5px 8px;
            }
        }
