
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            min-height: 100vh;
            background:
                radial-gradient(circle at 10% 20%, rgba(0, 208, 147, 0.08), transparent 28%),
                radial-gradient(circle at 90% 80%, rgba(123, 75, 255, 0.10), transparent 30%),
                #080d14;
            color: #fff;
            overflow-x: hidden;
        }

        /* =========================
           MAIN WRAPPER
        ========================== */

        .be-register-wrapper {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
            position: relative;
            overflow: hidden;
        }

        /* Background Glow */

        .be-bg-glow {
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            filter: blur(100px);
            opacity: .15;
            pointer-events: none;
        }

        .be-glow-one {
            background: #00d99a;
            top: -200px;
            left: -180px;
            animation: beGlowMove 8s ease-in-out infinite;
        }

        .be-glow-two {
            background: #754cff;
            right: -180px;
            bottom: -200px;
            animation: beGlowMove2 10s ease-in-out infinite;
        }

        @keyframes beGlowMove {
            0%,100% {
                transform: translate(0,0);
            }
            50% {
                transform: translate(80px,50px);
            }
        }

        @keyframes beGlowMove2 {
            0%,100% {
                transform: translate(0,0);
            }
            50% {
                transform: translate(-80px,-40px);
            }
        }

        /* =========================
           REGISTER CARD
        ========================== */

        .be-register-card {
            position: relative;
            z-index: 2;

            background: rgba(11, 17, 26, .94);
            border: 1px solid #1d2b3c;
            border-radius: 28px;

            overflow: hidden;

            box-shadow:
                0 35px 100px rgba(0,0,0,.55),
                inset 0 1px rgba(255,255,255,.025);

            animation: cardShow .8s ease forwards;
            padding: 20px;
        }

        @keyframes cardShow {
            from {
                opacity: 0;
                transform: translateY(30px) scale(.98);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

       
        /* =========================
           RIGHT FORM
        ========================== */


        .be-form-header {
            margin: 30px 0px;
        }

        .be-form-header h2 {
            font-size: 25px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .be-form-header p {
            color: #738095;
            font-size: 13px;
            margin: 0;
        }

        .brand-logo img {
            max-width: 130px;
        }
        /* =========================
           INPUT
        ========================== */

        .be-input-group {
            position: relative;
            margin-bottom: 19px;
        }

        .be-input-group label {
            display: block;
            color: #a7b3c4;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .be-input-wrap {
            position: relative;
        }

        .be-input-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);

            color: #627186;
            font-size: 14px;

            z-index: 2;
            transition: .3s ease;
        }

        .be-form-control {
            width: 100%;
            height: 54px;

            border-radius: 13px;

            border: 1px solid #202e40;

            background: #0c131d;

            color: #edf2f7;

            font-size: 14px;

            padding: 0 16px 0 45px;

            outline: none;

            transition: .3s ease;
        }

        .be-form-control::placeholder {
            color: #536174;
        }

        .be-form-control:hover {
            border-color: #2c3c51;
        }

        .be-form-control:focus {
            border-color: #00c98f;

            background: #0d1620;

            box-shadow:
                0 0 0 3px rgba(0,217,154,.08),
                0 8px 25px rgba(0,0,0,.18);
        }

        .be-input-wrap:focus-within .be-input-icon {
            color: #00d99a;
        }

        /* =========================
           REFERRAL FIELD
        ========================== */

        .be-referral {
            background:
                linear-gradient(
                    90deg,
                    rgba(0,217,154,.06),
                    rgba(38,198,255,.04)
                );
        }

       
        /* =========================
           PHONE FIELD
        ========================== */

        .be-phone-row {
            display: flex;
            gap: 10px;
        }

        .be-country-code {
            width: 105px;
            flex-shrink: 0;
            position: relative;
        }

        .be-country-code .be-form-control {
            padding-left: 16px;
        }

        .be-phone-field {
            flex: 1;
        }

      
        /* =========================
           TERMS
        ========================== */

        .be-terms {
            display: flex;
            align-items: flex-start;
            margin: 22px 0;
        }

        .be-terms input {
            display: none;
        }

        .be-custom-check {
            width: 19px;
            height: 19px;
            min-width: 19px;

            margin-right: 10px;
            margin-top: 1px;

            border-radius: 5px;

            border: 1px solid #344459;
            background: #0c131d;

            position: relative;
            cursor: pointer;
        }

        .be-terms input:checked + .be-custom-check {
            background: #00b982;
            border-color: #00b982;
        }

        .be-terms input:checked + .be-custom-check:after {
            content: "\f00c";

            font-family: "Font Awesome 6 Free";
            font-weight: 900;

            position: absolute;
            left: 3px;
            top: 0px;

            font-size: 11px;
            color: #fff;
        }

        .be-terms label {
            color: #718096;
            font-size: 12px;
            line-height: 1.5;
            cursor: pointer;
        }

        .be-terms label a {
            color: #00d99a;
            text-decoration: none;
        }

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

        /* =========================
           REGISTER BUTTON
        ========================== */

        .be-register-btn {
            width: 100%;
            height: 56px;

            border: 0;
            border-radius: 13px;

            color: #fff;

            font-size: 14px;
            font-weight: 700;

            cursor: pointer;

            background:
                linear-gradient(
                    100deg,
                    #00a978,
                    #00d99a,
                    #18c8df
                );

            background-size: 200% 100%;

            box-shadow:
                0 12px 30px rgba(0,217,154,.15);

            transition: .4s ease;

            position: relative;
            overflow: hidden;
        }

        .be-register-btn:before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 70%;
            height: 100%;

            background: linear-gradient(
                90deg,
                transparent,
                rgba(255,255,255,.25),
                transparent
            );

            transform: skewX(-20deg);
            transition: .6s;
        }

        .be-register-btn:hover {
            background-position: 100% 0;
            transform: translateY(-2px);

            box-shadow:
                0 15px 35px rgba(0,217,154,.25);
        }

        .be-register-btn:hover:before {
            left: 130%;
        }

        .be-register-btn:active {
            transform: translateY(0);
        }

        /* =========================
           LOGIN
        ========================== */

        .be-login-text {
            text-align: center;
            margin-top: 23px;

            color: #68768a;
            font-size: 12px;
        }

        .be-login-text a {
            color: #00d99a;
            font-weight: 700;
            text-decoration: none;
            margin-left: 4px;
        }

        .be-login-text a:hover {
            color: #26c6ff;
        }

        /* =========================
           SECURITY
        ========================== */

        .be-security {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 22px;

            color: #526174;
            font-size: 10px;
        }

        .be-security i {
            color: #00b982;
            margin-right: 6px;
        }

        /* =========================
           Country
        ========================== */
        .be-country-select {
            appearance: auto;
            -webkit-appearance: auto;
            cursor: pointer;
            padding-left: 45px;
        }

        .be-country-select option {
            background: #0c131d;
            color: #fff;
        }

        .be-country-select:focus {
            color: #fff;
        }

        /* =========================
            POSITION SELECTOR
            ========================= */

            .be-position-row {
                display: flex;
                gap: 12px;
            }

            .be-position-card {
                flex: 1;
                margin: 0;
                cursor: pointer;
            }

            .be-position-card > input {
                display: none;
            }

            .be-position-box {
                min-height: 70px;

                display: flex;
                align-items: center;

                padding: 12px 14px;

                border-radius: 13px;

                background: #0c131d;
                border: 1px solid #202e40;

                transition: .3s ease;

                position: relative;
                overflow: hidden;
            }

            .be-position-box:hover {
                border-color: #00b982;
                transform: translateY(-2px);
            }

            

            /* Text */

            .be-position-content {
                display: flex;
                flex-direction: column;
                line-height: 1.3;
            }

            .be-position-content strong {
                color: #dce4ed;
                font-size: 13px;
                font-weight: 700;
            }

            .be-position-content small {
                color: #647287;
                font-size: 10px;
                margin-top: 3px;
            }

            /* Radio */

            .be-radio-dot {
                width: 18px;
                height: 18px;

                border-radius: 50%;

                border: 1px solid #344459;

                margin-left: auto;

                position: relative;

                transition: .3s ease;
            }

            /* Selected */


            .be-position-card input:checked + .be-position-box
            .be-position-content strong {
                color: #00d99a;
            }

            .be-position-card input:checked + .be-position-box
            .be-radio-dot {
                border-color: #00d99a;
            }

            .be-position-card input:checked + .be-position-box
            .be-radio-dot:after {
                content: "";

                position: absolute;

                width: 8px;
                height: 8px;

                top: 4px;
                left: 4px;

                border-radius: 50%;

                background: #00d99a;

                box-shadow: 0 0 10px rgba(0,217,154,.6);
            }

             /* =========================
           REMEMBER / FORGOT
        ========================== */

         .be-password-eye {

            position: absolute;

            right: 16px;

            top: 50%;

            transform: translateY(-50%);

            color: #667589;

            cursor: pointer;

            transition: .3s ease;
        }

        .be-password-eye:hover {

            color: #00d99a;
        }


        .be-login-options {

            display: flex;

            align-items: center;

            justify-content: space-between;

            margin: 5px 0 24px;
        }


        .be-remember {

            display: flex;

            align-items: center;

            cursor: pointer;

            color: #718096;

            font-size: 12px;
        }

        .be-remember input {

            width: 16px;
            height: 16px;

            accent-color: #00d99a;

            margin-right: 8px;

            cursor: pointer;
        }


        .be-forgot {

            color: #00d99a;

            font-size: 12px;

            font-weight: 600;

            text-decoration: none;

            transition: .3s ease;
        }

        .be-forgot:hover {

            color: #26c6ff;

            text-decoration: none;
        }


        /* =========================
           RESPONSIVE
        ========================== */


        @media (max-width: 575px) {

            .be-register-wrapper {
                padding: 20px 12px;
                align-items: flex-start;
            }

            .be-register-card {
                border-radius: 20px;
                margin-top: 10px;
            }


            .be-form-header h2 {
                font-size: 22px;
            }

            .be-phone-row {
                gap: 8px;
            }

            .be-country-code {
                width: 90px;
            }

            .be-form-control {
                height: 52px;
            }

            .be-register-btn {
                height: 54px;
            }

        }

    