        /* ==========================================
           BELIEVERS LOGIN SECTION
        ========================================== */

        .believers-login-section {
            --bl-gold: #e0ad2d;
            --bl-light-gold: #ffe7a0;
            --bl-navy: #06142d;
            --bl-blue: #14376d;
            --bl-text: #17243b;

            position: relative;
            min-height: 100vh;
            padding: 80px 15px;
            overflow: hidden;
            display: flex;
            align-items: center;
            background: #1d1e2e;
            font-family: "Nunito", sans-serif;
            isolation: isolate;
        }

        .believers-login-section *,
        .believers-login-section *::before,
        .believers-login-section *::after {
            box-sizing: border-box;
        }

        .believers-login-section::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: -4;
            opacity: 0.35;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.05) 1px,
                    transparent 1px),
                linear-gradient(90deg,
                    rgba(255, 255, 255, 0.05) 1px,
                    transparent 1px);
            background-size: 46px 46px;
        }

        .believers-login-section::after {
            content: "";
            position: absolute;
            z-index: -3;
            width: 620px;
            height: 620px;
            top: 50%;
            left: 50%;
            border: 1px solid rgba(255, 226, 140, 0.13);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            box-shadow:
                0 0 0 80px rgba(255, 255, 255, 0.02),
                0 0 0 160px rgba(255, 255, 255, 0.015);
            animation: believersRotate 24s linear infinite;
        }

        @keyframes believersRotate {
            from {
                transform: translate(-50%, -50%) rotate(0deg);
            }

            to {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

        /* Background graphics */

        .believers-shape {
            position: absolute;
            z-index: -2;
            pointer-events: none;
            border-radius: 50%;
            animation: believersFloat 7s ease-in-out infinite;
        }

        .believers-shape-one {
            width: 190px;
            height: 190px;
            top: 7%;
            left: 4%;
            background: linear-gradient(
                135deg,
                rgba(255, 215, 95, 0.24),
                rgba(255, 255, 255, 0.02)
            );
        }

        .believers-shape-two {
            width: 290px;
            height: 290px;
            right: -100px;
            bottom: 3%;
            border: 2px solid rgba(255, 220, 118, 0.16);
            animation-delay: -3s;
        }

        .believers-shape-three {
            width: 90px;
            height: 90px;
            top: 15%;
            right: 12%;
            background: rgba(255, 255, 255, 0.07);
            animation-delay: -5s;
        }

        @keyframes believersFloat {
            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-22px) rotate(12deg);
            }
        }

        .believers-particle {
            position: absolute;
            z-index: -1;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #ffe299;
            box-shadow: 0 0 18px rgba(255, 224, 137, 0.95);
            animation: believersParticle 5s ease-in-out infinite;
        }

        .believers-particle-one {
            top: 20%;
            left: 20%;
        }

        .believers-particle-two {
            left: 9%;
            bottom: 20%;
            animation-delay: -2s;
        }

        .believers-particle-three {
            top: 28%;
            right: 18%;
            animation-delay: -1s;
        }

        .believers-particle-four {
            right: 27%;
            bottom: 13%;
            animation-delay: -4s;
        }

        @keyframes believersParticle {
            0%,
            100% {
                opacity: 0.35;
                transform: translateY(0) scale(1);
            }

            50% {
                opacity: 1;
                transform: translateY(-20px) scale(1.4);
            }
        }

        /* Main login box */

        .believers-login-box {
            position: relative;
            width: 100%;
            max-width: 1120px;
            margin: 0 auto;
            overflow: hidden;
            border: 1px solid #3c6d81;
            border-radius: 15px;
            background: #ffffff;
            box-shadow:
                0 35px 90px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            animation: believersBoxEnter 0.9s ease both;
        }

        @keyframes believersBoxEnter {
            from {
                opacity: 0;
                transform: translateY(35px) scale(0.97);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .believers-login-box::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 5;
            pointer-events: none;
            border-radius: inherit;
            padding: 1px;
            background: linear-gradient(
                135deg,
                rgba(255, 225, 133, 0.9),
                transparent 35%,
                transparent 70%,
                rgba(255, 255, 255, 0.45)
            );
            -webkit-mask:
                linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
        }

        .believers-login-row {
            min-height: 640px;
            align-items: stretch;
        }

        .believers-login-row > div {
            display: flex;
        }

        /* Left column */

        .believers-welcome-panel {
            position: relative;
            width: 100%;
            min-height: 640px;
            padding: 60px 55px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: #ffffff;
            background: #233a78;
        }

        .believers-welcome-panel::before {
            content: "";
            position: absolute;
            width: 350px;
            height: 350px;
            top: -170px;
            right: -120px;
            border: 45px solid rgba(255, 220, 115, 0.08);
            border-radius: 50%;
        }

        .believers-welcome-panel::after {
            content: "";
            position: absolute;
            width: 230px;
            height: 230px;
            left: -110px;
            bottom: -115px;
            border-radius: 50%;
            background: rgba(255, 208, 68, 0.08);
            box-shadow:
                0 0 0 45px rgba(255, 255, 255, 0.025),
                0 0 0 90px rgba(255, 255, 255, 0.018);
        }

        .believers-welcome-content,
        .believers-verse-box {
            position: relative;
            z-index: 2;
        }

        .believers-logo {
            width: 88px;
            height: 88px;
            margin-bottom: 27px;
            display: grid;
            place-items: center;
            border: 1px solid rgba(255, 225, 130, 0.7);
            border-radius: 24px;
            color: var(--bl-light-gold);
            font-size: 37px;
            background: rgba(255, 255, 255, 0.08);
            box-shadow:
                0 0 0 7px rgba(255, 215, 93, 0.06),
                0 15px 40px rgba(0, 0, 0, 0.24);
            animation: believersLogoGlow 2.5s ease-in-out infinite;
        }

        @keyframes believersLogoGlow {
            0%,
            100% {
                box-shadow:
                    0 0 0 7px rgba(255, 215, 93, 0.06),
                    0 0 18px rgba(255, 207, 76, 0.16);
            }

            50% {
                box-shadow:
                    0 0 0 12px rgba(255, 215, 93, 0.03),
                    0 0 35px rgba(255, 207, 76, 0.45);
            }
        }

        .believers-badge {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            margin-bottom: 18px;
            padding: 8px 15px;
            border: 1px solid rgba(255, 225, 139, 0.32);
            border-radius: 50px;
            color: #ffe8a9;
            background: rgba(255, 210, 77, 0.08);
            font-size: 12px;
            font-weight: 900;
            letter-spacing: 1.4px;
            text-transform: uppercase;
        }

        .believers-title {
            margin: 0 0 20px;
            color: #ffffff;
            font-family: "Archivo Black", sans-serif;
            font-size: clamp(35px, 4vw, 52px);
            line-height: 1.08;
            letter-spacing: -1px;
        }

        .believers-title span {
            color: var(--bl-light-gold);
        }

        .believers-description {
            max-width: 480px;
            margin-bottom: 30px;
            color: #d9e2ef;
            font-size: 16px;
            line-height: 1.8;
        }

        .believers-feature-list {
            display: grid;
            gap: 14px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .believers-feature-list li {
            display: flex;
            align-items: center;
            gap: 13px;
            color: #f0f5fb;
            font-size: 14px;
            font-weight: 700;
        }

        .believers-feature-list i {
            width: 35px;
            height: 35px;
            display: grid;
            place-items: center;
            flex: 0 0 35px;
            border: 1px solid rgba(255, 222, 121, 0.18);
            border-radius: 10px;
            color: var(--bl-light-gold);
            background: rgba(255, 212, 87, 0.1);
        }

        .believers-verse-box {
            margin-top: 34px;
            padding: 18px 20px 18px 51px;
            border-left: 3px solid var(--bl-gold);
            border-radius: 0 14px 14px 0;
            color: #e8edf5;
            background: rgba(255, 255, 255, 0.06);
            font-size: 13px;
            line-height: 1.7;
        }

        .believers-verse-box > i {
            position: absolute;
            top: 21px;
            left: 19px;
            color: var(--bl-light-gold);
            font-size: 20px;
        }

        .believers-verse-box strong {
            display: block;
            margin-top: 5px;
            color: #ffe9ac;
        }

        /* Right column full white background */

        .believers-form-panel {
            position: relative;
            width: 100%;
            min-height: 640px;
            padding: 60px 55px;
            display: flex;
            align-items: center;
            background: #ffffff;
        }

        .believers-form-panel::before {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            opacity: 0.8;
            background:
                radial-gradient(circle at 100% 0,
                    rgba(221, 172, 42, 0.12),
                    transparent 29%),
                radial-gradient(circle at 0 100%,
                    rgba(38, 92, 170, 0.06),
                    transparent 31%);
        }

        .believers-form-content {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 430px;
            margin: auto;
        }

        .believers-mobile-icon {
            display: none;
            width: 66px;
            height: 66px;
            margin: 0 auto 18px;
            place-items: center;
            border-radius: 20px;
            color: #725200;
            font-size: 28px;
            background: linear-gradient(145deg, #fff4cd, #e8b93b);
            box-shadow: 0 12px 30px rgba(153, 111, 0, 0.2);
        }

        .believers-form-title {
            margin: 0 0 8px;
            color: #0b1b36;
            font-family: "Archivo Black", sans-serif;
            font-size: clamp(29px, 3vw, 39px);
            line-height: 1.2;
        }

        .believers-form-text {
            margin-bottom: 31px;
            color: #68758a;
            font-size: 15px;
            line-height: 1.7;
        }

        .believers-alert {
            display: none;
            margin-bottom: 20px;
            padding: 13px 15px;
            border: 1px solid #b8ddc1;
            border-radius: 12px;
            color: #276437;
            background: #effbf2;
            font-size: 13px;
            font-weight: 700;
        }

        .believers-alert.show {
            display: flex;
            align-items: center;
            gap: 9px;
            animation: believersAlert 0.4s ease;
        }

        @keyframes believersAlert {
            from {
                opacity: 0;
                transform: translateY(-8px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .believers-input-group {
            position: relative;
            margin-bottom: 20px;
        }

        .believers-label {
            display: block;
            margin-bottom: 8px;
            color: #22324c;
            font-size: 13px;
            font-weight: 800;
        }

        .believers-input-wrapper {
            position: relative;
        }

        .believers-input-icon {
            position: absolute;
            z-index: 3;
            top: 50%;
            left: 18px;
            transform: translateY(-50%);
            color: #8c98aa;
            transition: 0.3s ease;
        }

        .believers-form-control {
            width: 100%;
            height: 56px;
            padding: 0 48px 0 49px;
            border: 1px solid #d7dfeb;
            border-radius: 14px;
            outline: none;
            color: #15233d;
            background: #ffffff;
            font-family: "Nunito", sans-serif;
            font-size: 14px;
            font-weight: 600;
            box-shadow: 0 8px 22px rgba(18, 42, 76, 0.05);
            transition: 0.3s ease;
        }

        .believers-form-control::placeholder {
            color: #9ca7b7;
            font-weight: 500;
        }

        .believers-form-control:focus {
            border-color: #d0a126;
            box-shadow:
                0 0 0 4px rgba(214, 166, 42, 0.12),
                0 12px 26px rgba(18, 42, 76, 0.08);
        }

        .believers-input-wrapper:focus-within .believers-input-icon {
            color: #a97900;
        }

        .believers-password-toggle {
            position: absolute;
            z-index: 4;
            top: 50%;
            right: 15px;
            width: 35px;
            height: 35px;
            padding: 0;
            transform: translateY(-50%);
            border: 0;
            border-radius: 9px;
            color: #8490a1;
            background: transparent;
            transition: 0.25s ease;
        }

        .believers-password-toggle:hover {
            color: #a77a06;
            background: #fff4d3;
        }

        .believers-error {
            display: none;
            margin-top: 7px;
            color: #bd2433;
            font-size: 12px;
            font-weight: 700;
        }

        .believers-input-group.has-error .believers-form-control {
            border-color: #d74452;
            box-shadow: 0 0 0 4px rgba(215, 68, 82, 0.08);
        }

        .believers-input-group.has-error .believers-error {
            display: block;
        }

        .believers-options {
            margin: 5px 0 28px;
        }

        .believers-remember {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #536177;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
        }

        .believers-remember input {
            width: 17px;
            height: 17px;
            accent-color: #c39417;
        }

        .believers-forgot-link {
            color: #9a710c;
            font-size: 13px;
            font-weight: 800;
            text-decoration: none;
            transition: 0.25s ease;
        }

        .believers-forgot-link:hover {
            color: #0d2b57;
        }

        .believers-login-button {
            position: relative;
            width: 100%;
            min-height: 57px;
            padding: 14px 25px;
            overflow: hidden;
            border: 0;
            border-radius: 15px;
            color: #172039;
            background: linear-gradient(
                135deg,
                #ffea9f 0%,
                #d7a522 45%,
                #f8d46d 100%
            );
            font-family: "Nunito", sans-serif;
            font-size: 15px;
            font-weight: 900;
            letter-spacing: 0.4px;
            box-shadow:
                0 14px 30px rgba(179, 128, 0, 0.27),
                inset 0 1px 0 rgba(255, 255, 255, 0.7);
            transition: 0.35s ease;
        }

        .believers-login-button::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 60%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.65),
                transparent
            );
            transform: skewX(-25deg);
            transition: left 0.7s ease;
        }

        .believers-login-button:hover {
            color: #07152f;
            transform: translateY(-3px);
            box-shadow:
                0 18px 36px rgba(179, 128, 0, 0.36),
                inset 0 1px 0 rgba(255, 255, 255, 0.75);
        }

        .believers-login-button:hover::before {
            left: 145%;
        }

        .believers-login-button i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .believers-login-button:hover i {
            transform: translateX(5px);
        }

        .believers-divider {
            display: flex;
            align-items: center;
            gap: 12px;
            margin: 27px 0 22px;
            color: #9aa5b5;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 1.3px;
            text-transform: uppercase;
        }

        .believers-divider::before,
        .believers-divider::after {
            content: "";
            flex: 1;
            height: 1px;
            background: linear-gradient(
                90deg,
                transparent,
                #d1d9e5,
                transparent
            );
        }

        .believers-register-text {
            margin: 0;
            text-align: center;
            color: #657187;
            font-size: 14px;
            font-weight: 600;
        }

        .believers-register-text a {
            margin-left: 4px;
            color: #9b720c;
            font-weight: 900;
            text-decoration: none;
        }

        .believers-register-text a:hover {
            text-decoration: underline;
        }

        .believers-security-note {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 25px;
            color: #8290a4;
            font-size: 12px;
            font-weight: 700;
        }

        .believers-security-note i {
            color: #a77d10;
        }

        /* Responsive */

        @media (max-width: 991.98px) {
            .believers-login-section {
                padding: 65px 18px;
            }

            .believers-login-row {
                min-height: 600px;
            }

            .believers-welcome-panel,
            .believers-form-panel {
                min-height: 600px;
                padding: 50px 36px;
            }

            .believers-title {
                font-size: 38px;
            }
        }

        @media (max-width: 767.98px) {
            .believers-login-section {
                min-height: auto;
                padding: 50px 12px;
            }

            .believers-login-box {
                max-width: 540px;
                border-radius: 22px;
            }

            .believers-login-row {
                min-height: auto;
            }

            .believers-login-row > div {
                display: block;
            }

            .believers-welcome-panel,
            .believers-form-panel {
                min-height: auto;
            }

            .believers-welcome-panel {
                padding: 40px 25px;
                text-align: center;
            }

            .believers-logo {
                width: 72px;
                height: 72px;
                margin: 0 auto 22px;
                border-radius: 20px;
                font-size: 31px;
            }

            .believers-title {
                font-size: 32px;
            }

            .believers-description {
                margin-right: auto;
                margin-left: auto;
                font-size: 14px;
            }

            .believers-feature-list,
            .believers-verse-box {
                display: none;
            }

            .believers-form-panel {
                padding: 45px 24px;
                background: #ffffff;
            }

            .believers-mobile-icon {
                display: grid;
            }

            .believers-form-title,
            .believers-form-text {
                text-align: center;
            }

            .believers-form-title {
                font-size: 29px;
            }
        }

        @media (max-width: 430px) {
            .believers-welcome-panel {
                padding: 35px 19px;
            }

            .believers-form-panel {
                padding: 38px 18px;
            }

            .believers-options {
                gap: 12px;
            }

            .believers-remember,
            .believers-forgot-link {
                font-size: 12px;
            }
        }

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