        /* =====================================================
           BELIEVERS REGISTRATION SECTION
           All styles are scoped to .br-section
        ====================================================== */

        .br-section,
        .br-section * {
            box-sizing: border-box;
        }

        .br-section {
            --br-navy: #071a35;
            --br-blue: #123f78;
            --br-light-blue: #eaf5ff;
            --br-gold: #f2b84b;
            --br-orange: #ff7a37;
            --br-white: #ffffff;
            --br-text: #26374a;
            --br-muted: #6f7e91;

            position: relative;
            min-height: 100vh;
            padding: 80px 0;
            overflow: hidden;
            font-family: "Nunito", sans-serif;
            background:
                radial-gradient(circle at 8% 15%,
                    rgba(45, 128, 255, 0.26),
                    transparent 25%),
                radial-gradient(circle at 92% 85%,
                    rgba(242, 184, 75, 0.22),
                    transparent 25%),
                linear-gradient(135deg, #06152d 0%, #0a2d57 48%, #071a35 100%);
        }

        /* Background grid */
        .br-section::before {
            content: "";
            position: absolute;
            inset: 0;
            opacity: 0.14;
            pointer-events: none;
            background-image:
                linear-gradient(rgba(255,255,255,0.13) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.13) 1px, transparent 1px);
            background-size: 55px 55px;
            mask-image: linear-gradient(
                to bottom,
                transparent,
                black 18%,
                black 82%,
                transparent
            );
        }

        .br-section::after {
            content: "";
            position: absolute;
            width: 520px;
            height: 520px;
            top: -270px;
            right: -220px;
            border-radius: 50%;
            border: 75px solid rgba(255,255,255,0.04);
            box-shadow:
                0 0 0 45px rgba(242,184,75,0.025),
                0 0 0 110px rgba(255,255,255,0.018);
            animation: brRotate 22s linear infinite;
        }

        .br-container {
            position: relative;
            z-index: 5;
        }

        /* Decorative elements */
        .br-shape {
            position: absolute;
            pointer-events: none;
            z-index: 1;
        }

        .br-shape-one {
            width: 170px;
            height: 170px;
            left: -55px;
            top: 16%;
            border: 2px dashed rgba(242,184,75,0.35);
            border-radius: 50%;
            animation: brRotate 18s linear infinite;
        }

        .br-shape-two {
            width: 22px;
            height: 22px;
            right: 10%;
            top: 10%;
            border-radius: 50%;
            background: var(--br-gold);
            box-shadow:
                0 0 22px rgba(242,184,75,0.9),
                0 0 55px rgba(242,184,75,0.45);
            animation: brFloat 4s ease-in-out infinite;
        }

        .br-shape-three {
            width: 105px;
            height: 105px;
            right: 4%;
            bottom: 15%;
            border-radius: 26px;
            border: 2px solid rgba(255,255,255,0.15);
            transform: rotate(28deg);
            animation: brFloat 6s ease-in-out infinite reverse;
        }

        /* Main wrapper */
        .br-main-card {
            position: relative;
            overflow: hidden;
            border-radius: 30px;
            border: 1px solid rgba(255,255,255,0.18);
            background: rgba(255,255,255,0.08);
            box-shadow:
                0 35px 90px rgba(0,0,0,0.38),
                inset 0 1px 0 rgba(255,255,255,0.14);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
        }

        /* Left information panel */
        .br-info-panel {
            position: relative;
            min-height: 100%;
            padding: 55px 45px;
            color: var(--br-white);
            overflow: hidden;
            background:
                radial-gradient(circle at 15% 15%,
                    rgba(255,255,255,0.17),
                    transparent 23%),
                linear-gradient(145deg,
                    rgba(19,69,128,0.96),
                    rgba(5,28,59,0.98));
        }

        .br-info-panel::before {
            content: "";
            position: absolute;
            width: 290px;
            height: 290px;
            left: -150px;
            bottom: -150px;
            border: 55px solid rgba(242,184,75,0.10);
            border-radius: 50%;
        }

        .br-info-panel::after {
            content: "";
            position: absolute;
            inset: 0;
            opacity: 0.16;
            pointer-events: none;
            background-image:
                radial-gradient(circle,
                    rgba(255,255,255,0.8) 1px,
                    transparent 1.7px);
            background-size: 28px 28px;
        }

        .br-info-content {
            position: relative;
            z-index: 3;
        }

        .br-logo {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 82px;
            height: 82px;
            margin-bottom: 28px;
            border-radius: 25px;
            font-size: 34px;
            color: #172b47;
            background: linear-gradient(145deg, #ffe5a3, #f2b84b);
            border: 2px solid rgba(255,255,255,0.75);
            box-shadow:
                0 0 0 8px rgba(242,184,75,0.12),
                0 18px 40px rgba(0,0,0,0.25);
            animation: brLogoGlow 2.5s ease-in-out infinite;
        }

        .br-small-title {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            margin-bottom: 14px;
            padding: 8px 15px;
            border-radius: 100px;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 1.3px;
            text-transform: uppercase;
            color: #ffe8b1;
            border: 1px solid rgba(242,184,75,0.45);
            background: rgba(242,184,75,0.10);
        }

        .br-info-panel h1 {
            margin-bottom: 18px;
            font-family: "Archivo Black", sans-serif;
            font-size: clamp(22px, 4vw, 22px);
            line-height: 1.4;
            letter-spacing: -1.2px;
        }

        .br-info-panel h1 span {
            display: block;
            color: var(--br-gold);
        }

        .br-intro {
            max-width: 470px;
            margin-bottom: 34px;
            font-size: 16px;
            line-height: 1.75;
            color: rgba(255,255,255,0.78);
        }

        .br-benefit {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 19px;
        }

        .br-benefit-icon {
            flex: 0 0 47px;
            width: 47px;
            height: 47px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 15px;
            color: #082342;
            background: linear-gradient(145deg, #ffe19a, #f2b84b);
            box-shadow: 0 10px 25px rgba(0,0,0,0.20);
        }

        .br-benefit h3 {
            margin: 0 0 3px;
            font-size: 16px;
            font-weight: 800;
        }

        .br-benefit p {
            margin: 0;
            font-size: 13px;
            color: rgba(255,255,255,0.64);
        }

        .br-verse {
            position: relative;
            margin-top: 37px;
            padding: 22px 22px 20px 25px;
            border-radius: 18px;
            border: 1px solid rgba(255,255,255,0.14);
            background: rgba(255,255,255,0.075);
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.10);
        }

        .br-verse::before {
            content: "";
            position: absolute;
            top: 15px;
            bottom: 15px;
            left: 0;
            width: 4px;
            border-radius: 10px;
            background: var(--br-gold);
            box-shadow: 0 0 16px rgba(242,184,75,0.8);
        }

        .br-verse p {
            margin: 0 0 7px;
            font-size: 14px;
            font-style: italic;
            line-height: 1.7;
            color: rgba(255,255,255,0.86);
        }

        .br-verse span {
            color: var(--br-gold);
            font-size: 12px;
            font-weight: 800;
        }

        /* Form panel */
        .br-form-panel {
            position: relative;
            min-height: 100%;
            padding: 48px;
            background:
                radial-gradient(circle at 100% 0,
                    rgba(45,128,255,0.08),
                    transparent 32%),
                linear-gradient(145deg, #ffffff, #f5faff);
        }

        .br-form-panel::after {
            content: "";
            position: absolute;
            width: 150px;
            height: 150px;
            right: -60px;
            bottom: -60px;
            border-radius: 50%;
            border: 30px solid rgba(242,184,75,0.11);
            pointer-events: none;
        }

        .br-form-header {
            position: relative;
            z-index: 2;
            margin-bottom: 30px;
        }

        .br-form-header h2 {
            margin-bottom: 8px;
            color: var(--br-navy);
            font-family: "Archivo Black", sans-serif;
            font-size: clamp(27px, 3vw, 37px);
            letter-spacing: -0.6px;
        }

        .br-form-header p {
            margin: 0;
            color: var(--br-muted);
            font-size: 15px;
        }

        .br-heading-line {
            width: 85px;
            height: 5px;
            margin-top: 16px;
            border-radius: 10px;
            background: linear-gradient(
                90deg,
                var(--br-gold),
                var(--br-orange)
            );
            box-shadow: 0 5px 14px rgba(242,184,75,0.35);
        }

        /* Form fields */
        .br-form {
            position: relative;
            z-index: 2;
        }

        .br-field {
            position: relative;
            margin-bottom: 19px;
        }

        .br-field label {
            display: inline-block;
            margin-bottom: 8px;
            color: #233b57;
            font-size: 13px;
            font-weight: 800;
        }

        .br-required {
            color: #e94646;
        }

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

        .br-input-icon {
            position: absolute;
            z-index: 3;
            top: 50%;
            left: 17px;
            width: 20px;
            transform: translateY(-50%);
            color: #6e88a6;
            text-align: center;
            transition: 0.3s ease;
        }

        .br-form-control,
        .br-form-select {
            width: 100%;
            min-height: 53px;
            padding: 12px 16px 12px 50px;
            color: var(--br-text);
            font-size: 14px;
            font-weight: 600;
            border-radius: 14px;
            border: 1px solid #dbe5ef;
            outline: none;
            background-color: #f8fbff;
            box-shadow:
                inset 0 1px 2px rgba(5,31,61,0.025),
                0 7px 18px rgba(8,46,87,0.035);
            transition:
                border-color 0.3s ease,
                box-shadow 0.3s ease,
                background 0.3s ease,
                transform 0.3s ease;
        }

        .br-form-select {
            cursor: pointer;
        }

        .br-form-control::placeholder {
            color: #9aa9b9;
            font-weight: 500;
        }

        .br-form-control:focus,
        .br-form-select:focus {
            border-color: #347fc6;
            background-color: #ffffff;
            box-shadow:
                0 0 0 4px rgba(52,127,198,0.11),
                0 10px 25px rgba(8,46,87,0.07);
            transform: translateY(-1px);
        }

        .br-input-wrap:focus-within .br-input-icon {
            color: #246eb2;
            transform: translateY(-50%) scale(1.08);
        }

        .br-password-toggle {
            position: absolute;
            z-index: 4;
            top: 50%;
            right: 15px;
            width: 36px;
            height: 36px;
            padding: 0;
            border: 0;
            border-radius: 10px;
            transform: translateY(-50%);
            color: #617a96;
            background: transparent;
            transition: 0.25s ease;
        }

        .br-password-toggle:hover {
            color: #153f70;
            background: #eaf3fc;
        }

        .br-has-toggle {
            padding-right: 55px;
        }

        /* Gender cards */
        .br-gender-options {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }

        .br-gender-option {
            position: relative;
        }

        .br-gender-option input {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .br-gender-label {
            width: 100%;
            min-height: 53px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin: 0 !important;
            padding: 10px;
            cursor: pointer;
            border-radius: 14px;
            border: 1px solid #dbe5ef;
            color: #60748b !important;
            background: #f8fbff;
            transition: 0.3s ease;
        }

        .br-gender-label:hover {
            border-color: #9ebbd6;
            background: #ffffff;
        }

        .br-gender-option input:checked + .br-gender-label {
            color: #ffffff !important;
            border-color: #1c548c;
            background: linear-gradient(135deg, #123f78, #276db0);
            box-shadow: 0 10px 22px rgba(18,63,120,0.20);
            transform: translateY(-2px);
        }

        /* WhatsApp helper */
        .br-copy-number {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            margin-top: 8px;
            padding: 0;
            color: #218b4b;
            font-size: 12px;
            font-weight: 800;
            border: 0;
            background: transparent;
        }

        .br-copy-number:hover {
            color: #176c39;
        }

        /* Password strength */
        .br-password-strength {
            display: none;
            margin-top: 9px;
        }

        .br-strength-track {
            height: 5px;
            overflow: hidden;
            border-radius: 50px;
            background: #e4eaf0;
        }

        .br-strength-bar {
            width: 0;
            height: 100%;
            border-radius: inherit;
            transition: 0.35s ease;
        }

        .br-strength-text {
            display: block;
            margin-top: 5px;
            font-size: 11px;
            font-weight: 700;
            color: #7d8b9b;
        }

        /* Terms */
        .br-terms-box {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin: 7px 0 25px;
            padding: 17px;
            border-radius: 15px;
            border: 1px solid #dce8f3;
            background: linear-gradient(135deg, #f8fbff, #eef7ff);
        }

        .br-terms-box .form-check-input {
            flex: 0 0 auto;
            width: 19px;
            height: 19px;
            margin: 2px 0 0;
            cursor: pointer;
            border-color: #9eb2c6;
            box-shadow: none;
        }

        .br-terms-box .form-check-input:checked {
            border-color: #174b80;
            background-color: #174b80;
        }

        .br-terms-box label {
            margin: 0;
            color: #63748a;
            font-size: 13px;
            font-weight: 600;
            line-height: 1.55;
        }

        .br-terms-box a {
            color: #174b80;
            font-weight: 800;
            text-decoration: none;
        }

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

        /* Submit button */
        .br-submit-btn {
            position: relative;
            width: 100%;
            min-height: 57px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 11px;
            overflow: hidden;
            border: 0;
            border-radius: 15px;
            color: #ffffff;
            font-size: 15px;
            font-weight: 900;
            letter-spacing: 0.25px;
            background: linear-gradient(135deg, #123f78, #09294e);
            box-shadow:
                0 15px 30px rgba(9,41,78,0.24),
                inset 0 1px 0 rgba(255,255,255,0.22);
            transition: 0.35s ease;
        }

        .br-submit-btn::before {
            content: "";
            position: absolute;
            top: 0;
            left: -120%;
            width: 75%;
            height: 100%;
            transform: skewX(-25deg);
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255,255,255,0.35),
                transparent
            );
            transition: 0.7s ease;
        }

        .br-submit-btn:hover {
            color: #ffffff;
            transform: translateY(-3px);
            box-shadow:
                0 20px 38px rgba(9,41,78,0.31),
                0 0 0 5px rgba(242,184,75,0.12);
        }

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

        .br-submit-btn:disabled {
            cursor: not-allowed;
            opacity: 0.72;
            transform: none;
        }

        .br-login-text {
            margin: 22px 0 0;
            text-align: center;
            color: #76869a;
            font-size: 14px;
            font-weight: 600;
        }

        .br-login-text a {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-left: 4px;
            color: #154d84;
            font-weight: 900;
            text-decoration: none;
        }

        .br-login-text a:hover {
            color: #e08f16;
        }

        /* Validation */
        .br-form-control.is-invalid,
        .br-form-select.is-invalid {
            border-color: #dc3545;
            background-image: none;
            box-shadow: 0 0 0 4px rgba(220,53,69,0.08);
        }

        .br-form-control.is-valid,
        .br-form-select.is-valid {
            border-color: #2d9d61;
            background-image: none;
        }

        .br-error {
            display: none;
            margin-top: 6px;
            color: #d83d4d;
            font-size: 11px;
            font-weight: 700;
        }

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

        /* Success message */
        .br-success-message {
            display: none;
            align-items: center;
            gap: 14px;
            margin-bottom: 24px;
            padding: 17px 19px;
            color: #17643d;
            border-radius: 15px;
            border: 1px solid #a9dfc2;
            background: #ebfff4;
            animation: brFadeUp 0.5s ease;
        }

        .br-success-message.show {
            display: flex;
        }

        .br-success-icon {
            flex: 0 0 42px;
            width: 42px;
            height: 42px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: #ffffff;
            background: #26995d;
        }

        .br-success-message strong {
            display: block;
            margin-bottom: 2px;
            font-size: 14px;
        }

        .br-success-message span {
            display: block;
            color: #54836a;
            font-size: 12px;
        }

        /* Modal */
        .br-section .modal-content {
            overflow: hidden;
            border: 0;
            border-radius: 22px;
            box-shadow: 0 25px 70px rgba(0,0,0,0.3);
        }

        .br-section .modal-header {
            color: #ffffff;
            border: 0;
            background: linear-gradient(135deg, #123f78, #071a35);
        }

        .br-section .modal-title {
            font-family: "Archivo Black", sans-serif;
            font-size: 19px;
        }

        .br-section .modal-body {
            color: #5b6c7f;
            font-size: 14px;
            line-height: 1.75;
        }

        /* Animations */
        @keyframes brRotate {
            to {
                transform: rotate(360deg);
            }
        }

        @keyframes brFloat {
            0%, 100% {
                transform: translateY(0) rotate(28deg);
            }
            50% {
                transform: translateY(-18px) rotate(34deg);
            }
        }

        @keyframes brLogoGlow {
            0%, 100% {
                box-shadow:
                    0 0 0 8px rgba(242,184,75,0.12),
                    0 18px 40px rgba(0,0,0,0.25);
            }
            50% {
                box-shadow:
                    0 0 0 13px rgba(242,184,75,0.06),
                    0 0 32px rgba(242,184,75,0.42),
                    0 18px 40px rgba(0,0,0,0.25);
            }
        }

        @keyframes brFadeUp {
            from {
                opacity: 0;
                transform: translateY(12px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 991.98px) {
            .br-section {
                padding: 55px 15px;
            }

            .br-info-panel {
                padding: 45px 35px;
            }

            .br-form-panel {
                padding: 42px 35px;
            }

            .br-verse {
                max-width: 600px;
            }
        }

        @media (max-width: 575.98px) {
            .br-section {
                padding: 30px 12px;
            }

            .br-main-card {
                border-radius: 22px;
            }

            .br-info-panel,
            .br-form-panel {
                padding: 34px 22px;
            }

            .br-info-panel h1 {
                font-size: 28px;
            }

            .br-logo {
                width: 68px;
                height: 68px;
                border-radius: 20px;
                font-size: 28px;
            }

            .br-gender-options {
                grid-template-columns: 1fr;
            }

            .br-gender-label {
                justify-content: flex-start;
                padding-left: 18px;
            }

            .br-form-control,
            .br-form-select {
                font-size: 13px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .br-section *,
            .br-section *::before,
            .br-section *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                scroll-behavior: auto !important;
            }
        }