  /* ===========================
           CSS RESET & BASE
           =========================== */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --bg-1: #0b0e17;
            --bg-2: #101528;
            --bg-3: #0d1220;
            --accent: #00e89d;
            --accent-dark: #00b87a;
            --accent-glow: rgba(0, 232, 157, 0.25);
            --gold: #ffb347;
            --gold-glow: rgba(255, 179, 71, 0.2);
            --text: #e4f0eb;
            --text-muted: #6a8f80;
            --card-bg: rgba(14, 22, 38, 0.7);
            --input-bg: rgba(8, 14, 28, 0.75);
            --border-subtle: rgba(0, 232, 157, 0.1);
            --error: #ff5c5c;
        }

        html, body {
            width: 100%;
            min-height: 100vh;
            font-family: 'Poppins', sans-serif;
            color: var(--text);
            overflow-x: hidden;
        }

        body {
            background: var(--bg-1);
        }

        a {
            text-decoration: none;
            transition: all 0.3s ease;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        /* ===========================
           TRANSITIONING BACKGROUND
           =========================== */
        #mainCoantiner {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 20px;
            /* Animated gradient background */
            background: linear-gradient(-45deg, #0b0e17, #0a1628, #0f1a12, #140e22, #0b1a1a, #111128);
            background-size: 400% 400%;
            animation: bgTransition 18s ease infinite;
        }

        @keyframes bgTransition {
            0% { background-position: 0% 50%; }
            25% { background-position: 50% 100%; }
            50% { background-position: 100% 50%; }
            75% { background-position: 50% 0%; }
            100% { background-position: 0% 50%; }
        }

        /* Extra atmospheric layers on top of gradient */
        #mainCoantiner::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 500px 500px at 15% 25%, rgba(0, 232, 157, 0.07) 0%, transparent 70%),
                radial-gradient(ellipse 400px 400px at 85% 75%, rgba(255, 179, 71, 0.05) 0%, transparent 70%),
                radial-gradient(ellipse 600px 300px at 50% 110%, rgba(0, 160, 120, 0.06) 0%, transparent 60%);
            z-index: 0;
            animation: atmospherePulse 10s ease-in-out infinite alternate;
        }

        #mainCoantiner::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(0, 232, 157, 0.015) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 232, 157, 0.015) 1px, transparent 1px);
            background-size: 50px 50px;
            mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 10%, transparent 70%);
            -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 10%, transparent 70%);
            z-index: 0;
        }

        @keyframes atmospherePulse {
            0% { opacity: 0.5; transform: scale(1); }
            100% { opacity: 1; transform: scale(1.08); }
        }

        /* ===========================
           DUST PARTICLES — starsec, starthird, starfourth, starfifth
           =========================== */
        .starsec,
        .starthird,
        .starfourth,
        .starfifth {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            z-index: 1;
        }

        /* Layer 1 — Large slow emerald particles */
        .starsec {
            width: 200%;
            height: 200%;
            top: -50%;
            left: -50%;
            background-image:
                radial-gradient(2px 2px at 10% 20%, rgba(0, 232, 157, 0.6), transparent),
                radial-gradient(2px 2px at 30% 65%, rgba(0, 232, 157, 0.4), transparent),
                radial-gradient(1.5px 1.5px at 55% 15%, rgba(0, 232, 157, 0.5), transparent),
                radial-gradient(2.5px 2.5px at 70% 80%, rgba(0, 232, 157, 0.3), transparent),
                radial-gradient(1.5px 1.5px at 90% 40%, rgba(0, 232, 157, 0.5), transparent),
                radial-gradient(2px 2px at 20% 90%, rgba(0, 232, 157, 0.35), transparent),
                radial-gradient(1px 1px at 45% 50%, rgba(0, 232, 157, 0.6), transparent),
                radial-gradient(2px 2px at 80% 10%, rgba(0, 232, 157, 0.4), transparent),
                radial-gradient(1.5px 1.5px at 5% 55%, rgba(0, 232, 157, 0.5), transparent),
                radial-gradient(2px 2px at 60% 35%, rgba(0, 232, 157, 0.45), transparent);
            animation: dustDrift1 30s linear infinite;
        }

        /* Layer 2 — Medium gold particles */
        .starthird {
            width: 200%;
            height: 200%;
            top: -50%;
            left: -50%;
            background-image:
                radial-gradient(1.5px 1.5px at 15% 30%, rgba(255, 179, 71, 0.5), transparent),
                radial-gradient(1px 1px at 40% 70%, rgba(255, 179, 71, 0.4), transparent),
                radial-gradient(2px 2px at 65% 20%, rgba(255, 179, 71, 0.35), transparent),
                radial-gradient(1.5px 1.5px at 85% 55%, rgba(255, 179, 71, 0.5), transparent),
                radial-gradient(1px 1px at 25% 85%, rgba(255, 179, 71, 0.4), transparent),
                radial-gradient(2px 2px at 50% 45%, rgba(255, 179, 71, 0.3), transparent),
                radial-gradient(1px 1px at 75% 90%, rgba(255, 179, 71, 0.5), transparent),
                radial-gradient(1.5px 1.5px at 5% 10%, rgba(255, 179, 71, 0.45), transparent);
            animation: dustDrift2 25s linear infinite;
        }

        /* Layer 3 — Tiny fast white particles */
        .starfourth {
            width: 200%;
            height: 200%;
            top: -50%;
            left: -50%;
            background-image:
                radial-gradient(1px 1px at 8% 45%, rgba(255, 255, 255, 0.5), transparent),
                radial-gradient(1px 1px at 22% 12%, rgba(255, 255, 255, 0.4), transparent),
                radial-gradient(1px 1px at 38% 78%, rgba(255, 255, 255, 0.35), transparent),
                radial-gradient(1px 1px at 52% 33%, rgba(255, 255, 255, 0.5), transparent),
                radial-gradient(1px 1px at 68% 62%, rgba(255, 255, 255, 0.4), transparent),
                radial-gradient(1px 1px at 82% 18%, rgba(255, 255, 255, 0.45), transparent),
                radial-gradient(1px 1px at 95% 88%, rgba(255, 255, 255, 0.3), transparent),
                radial-gradient(1px 1px at 15% 60%, rgba(255, 255, 255, 0.5), transparent),
                radial-gradient(1px 1px at 45% 92%, rgba(255, 255, 255, 0.35), transparent),
                radial-gradient(1px 1px at 72% 5%, rgba(255, 255, 255, 0.4), transparent),
                radial-gradient(1px 1px at 33% 48%, rgba(255, 255, 255, 0.5), transparent),
                radial-gradient(1px 1px at 60% 82%, rgba(255, 255, 255, 0.3), transparent);
            animation: dustDrift3 20s linear infinite;
        }

        /* Layer 4 — Scattered mixed particles with twinkle */
        .starfifth {
            width: 200%;
            height: 200%;
            top: -50%;
            left: -50%;
            background-image:
                radial-gradient(2px 2px at 12% 75%, rgba(0, 232, 157, 0.4), transparent),
                radial-gradient(1px 1px at 28% 22%, rgba(255, 179, 71, 0.5), transparent),
                radial-gradient(1.5px 1.5px at 42% 58%, rgba(255, 255, 255, 0.4), transparent),
                radial-gradient(2px 2px at 58% 88%, rgba(0, 232, 157, 0.35), transparent),
                radial-gradient(1px 1px at 73% 35%, rgba(255, 179, 71, 0.45), transparent),
                radial-gradient(1.5px 1.5px at 88% 65%, rgba(255, 255, 255, 0.5), transparent),
                radial-gradient(2px 2px at 3% 42%, rgba(0, 232, 157, 0.3), transparent),
                radial-gradient(1px 1px at 48% 8%, rgba(255, 255, 255, 0.4), transparent),
                radial-gradient(1.5px 1.5px at 93% 48%, rgba(255, 179, 71, 0.35), transparent);
            animation: dustDrift4 35s linear infinite;
            animation-direction: reverse;
        }

        @keyframes dustDrift1 {
            0% { transform: translate(0, 0) rotate(0deg); }
            100% { transform: translate(-15%, -10%) rotate(15deg); }
        }

        @keyframes dustDrift2 {
            0% { transform: translate(0, 0) rotate(0deg); }
            100% { transform: translate(10%, -12%) rotate(-10deg); }
        }

        @keyframes dustDrift3 {
            0% { transform: translate(0, 0); }
            100% { transform: translate(-8%, -18%); }
        }

        @keyframes dustDrift4 {
            0% { transform: translate(0, 0) rotate(0deg); }
            100% { transform: translate(12%, 8%) rotate(8deg); }
        }

        /* ===========================
           BOOTSTRAP OVERRIDES
           =========================== */
        .container {
            position: relative;
            z-index: 10;
            width: 100%;
            max-width: 540px;
            padding: 0 15px;
        }

        .text-center {
            text-align: center;
        }

        .text-white {
            color: var(--text) !important;
        }

        .text-white:hover {
            color: var(--accent) !important;
        }

        .text-muted {
            color: var(--text-muted) !important;
            font-size: 14px;
            font-weight: 300;
        }

        .mt-5 {
            margin-top: 3rem !important;
        }

        .row {
            display: flex;
            flex-wrap: wrap;
        }

        .col-lg-5 {
            flex: 0 0 100%;
            max-width: 100%;
        }

        .d-block {
            display: block !important;
        }

        .mx-auto {
            margin-left: auto !important;
            margin-right: auto !important;
        }

        .col-xl-12,
        .col-md-12 {
            flex: 0 0 100%;
            max-width: 100%;
        }

        /* ===========================
           CARD — with border-radius: 50% (oval)
           =========================== */
        .card {
            background: var(--card-bg);
            backdrop-filter: blur(30px) saturate(1.3);
            -webkit-backdrop-filter: blur(30px) saturate(1.3);
            border: 1px solid var(--border-subtle);
            
            overflow: hidden;
            position: relative;
            animation: cardAppear 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            opacity: 0;
            transform: translateY(30px) scale(0.95);
            box-shadow:
                0 4px 40px rgba(0, 0, 0, 0.4),
                0 0 80px rgba(0, 232, 157, 0.04);
            transition: border-color 0.5s ease, box-shadow 0.5s ease;
        }

        @keyframes cardAppear {
            to { opacity: 1; transform: translateY(0) scale(1); }
        }

        /* Animated glow border on focus-within */
        .card:focus-within {
            border-color: rgba(0, 232, 157, 0.3);
            box-shadow:
                0 4px 40px rgba(0, 0, 0, 0.4),
                0 0 60px rgba(0, 232, 157, 0.08),
                inset 0 0 40px rgba(0, 232, 157, 0.02);
        }

        /* Top glow line */
        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 40%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent), var(--gold), var(--accent), transparent);
            z-index: 5;
            animation: topGlow 3s ease-in-out infinite;
        }

        @keyframes topGlow {
            0%, 100% { opacity: 0.5; width: 35%; }
            50% { opacity: 1; width: 55%; }
        }

        /* Rotating shimmer overlay */
        .card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(
                from 0deg,
                transparent 0%,
                rgba(0, 232, 157, 0.02) 8%,
                transparent 16%,
                transparent 100%
            );
            animation: cardShimmer 10s linear infinite;
            pointer-events: none;
            z-index: 0;
        }

        @keyframes cardShimmer {
            to { transform: rotate(360deg); }
        }

        /* ===========================
           CARD-BODY / wow-bg / formBg
           =========================== */
        .card-body {
            padding: 50px 45px 45px;
            position: relative;
            z-index: 2;
            border-radius: 50% !important;
        }

        .wow-bg {
            /* Additional wow animation layer */
        }

        #formBg {
            /* Staggered inner fade-in */
            animation: formBgFade 1.2s ease 0.3s forwards;
            opacity: 0;
        }

        @keyframes formBgFade {
            to { opacity: 1; }
        }

        /* ===========================
           LOGO
           =========================== */
        .card-body > img {
            width:201px !important;
            height: 90px;
            object-fit: contain;
            border-radius: 22px;
            filter: drop-shadow(0 0 20px var(--accent-glow));
            animation: logoFloat 4s ease-in-out infinite;
            transition: transform 0.4s ease, filter 0.4s ease;
            display: inline-block;
            margin-bottom: 10px;
        }

        .card-body > img:hover {
            transform: scale(1.1) rotate(-3deg);
            filter: drop-shadow(0 0 35px rgba(0, 232, 157, 0.45));
        }

        @keyframes logoFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        
        /* ===========================
           NAV LINKS (Home | Register)
           =========================== */
        .card-body > a.text-white {
            font-size: 13.5px;
            font-weight: 400;
            position: relative;
            padding-bottom: 2px;
        }

        .card-body > a.text-white::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1.5px;
            background: var(--accent);
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        .card-body > a.text-white:hover::after {
            width: 100%;
        }

        .card-body > span.text-white {
            opacity: 0.35;
            margin: 0 8px;
            font-weight: 300;
        }

        .card-body > span.text-white:hover {
            color: var(--text) !important;
        }

        /* ===========================
           colorboard (Login heading)
           =========================== */
        .colorboard {
            font-size: 30px;
            font-weight: 700;
            margin: 18px 0 4px;
            background: linear-gradient(135deg, var(--text) 30%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 0.5px;
            animation: titleSlide 0.8s ease 0.5s both;
        }

        @keyframes titleSlide {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ===========================
           ERROR MESSAGE (ASP)
           =========================== */
        .form-group {
            margin-bottom: 16px;
            animation: errorShake 0.5s ease;
        }

        .form-group center {
            display: block;
            color: var(--error) !important;
            font-size: 13px;
            font-weight: 500;
            padding: 10px 18px;
            background: rgba(255, 92, 92, 0.08);
            border: 1px solid rgba(255, 92, 92, 0.15);
            border-radius: 12px;
            text-align: center !important;
        }

        @keyframes errorShake {
            0% { transform: translateX(-8px); opacity: 0; }
            20% { transform: translateX(6px); }
            40% { transform: translateX(-4px); }
            60% { transform: translateX(3px); }
            80% { transform: translateX(-1px); }
            100% { transform: translateX(0); opacity: 1; }
        }

        /* ===========================
           INPUT-GROUP / mb-3 / mb-4
           =========================== */
        .input-group {
            position: relative;
            margin-bottom: 0;
        }

        .mb-3 {
            margin-bottom: 18px !important;
            animation: inputSlide 0.6s ease 0.6s both;
			    margin-top: 20px;
        }

        .mb-4 {
            margin-bottom: 24px !important;
            animation: inputSlide 0.6s ease 0.75s both;
        }

        @keyframes inputSlide {
            from { opacity: 0; transform: translateY(12px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ===========================
           form-control / textbox-dg
           =========================== */
        .form-control.textbox-dg {
            width: 100%;
            padding: 15px 20px 15px 46px;
            background: var(--input-bg);
            border: 1.5px solid var(--border-subtle);
            border-radius: 14px;
            color: var(--text);
            font-family: 'Poppins', sans-serif;
            font-size: 14.5px;
            font-weight: 400;
            outline: none;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 2;
        }

        .form-control.textbox-dg::placeholder {
            color: var(--text-muted);
            font-weight: 300;
        }

        .form-control.textbox-dg:focus {
            border-color: var(--accent);
            background: rgba(0, 232, 157, 0.03);
            box-shadow: 0 0 0 4px var(--accent-glow), 0 6px 24px rgba(0, 0, 0, 0.25);
        }

        .form-control.textbox-dg:focus + .input-highlight {
            width: 100%;
        }

        /* Animated underline on focus */
        .input-group::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            height: 2px;
            width: 0;
            background: linear-gradient(90deg, var(--accent), var(--gold));
            border-radius: 0 0 14px 14px;
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 3;
        }

        .input-group:focus-within::after {
            width: 90%;
        }

        /* Input icons (injected via JS) */
        .input-icon-wrap {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-size: 14px;
            z-index: 3;
            pointer-events: none;
            transition: color 0.3s ease;
        }

        .input-group:focus-within .input-icon-wrap {
            color: var(--accent);
        }

        /* Password toggle */
        .pwd-toggle {
            position: absolute;
            right: 14px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--text-muted);
            font-size: 14px;
            cursor: pointer;
            z-index: 3;
            padding: 4px 6px;
            border-radius: 6px;
            transition: color 0.3s ease, background 0.3s ease;
        }

        .pwd-toggle:hover {
            color: var(--accent);
            background: rgba(0, 232, 157, 0.06);
        }

        /* ===========================
           ROW inside form
           =========================== */
        .card-body .row {
            animation: inputSlide 0.6s ease 0.9s both;
        }

        .card-body .row .col-12 {
            flex: 0 0 100%;
            max-width: 100%;
        }

        /* ===========================
           BUTTONS — btn / btn-primary / btn-block / logn-btn / w-50
           =========================== */
        .btn {
            display: inline-block;
            font-family: 'Poppins', sans-serif;
            cursor: pointer;
            border: none;
            outline: none;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent) 0%, #00c9a7 50%, var(--gold) 100%);
            background-size: 200% 200%;
            animation: btnGradientShift 4s ease infinite;
            color: var(--bg-1) !important;
            font-weight: 600;
            border-radius: 14px;
            padding: 15px 32px;
            font-size: 15px;
            letter-spacing: 0.4px;
            position: relative;
            overflow: hidden;
        }

        @keyframes btnGradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow:
                0 8px 28px rgba(0, 232, 157, 0.35),
                0 2px 8px rgba(255, 179, 71, 0.15);
        }

        .btn-primary:active {
            transform: translateY(0) scale(0.98);
        }

        /* Ripple on button */
        .btn-primary .ripple-circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.35);
            transform: scale(0);
            animation: rippleOut 0.6s ease-out;
            pointer-events: none;
        }

        @keyframes rippleOut {
            to { transform: scale(4); opacity: 0; }
        }

        .btn-block {
            display: block !important;
            width: 100% !important;
        }

        .logn-btn {
            /* Additional login button styling */
        }

        .w-50 {
            width: 50% !important;
            margin: 0 auto;
            display: block !important;
        }

        /* Loading spinner in button */
        .btn-primary .btn-spinner {
            display: none;
            width: 20px;
            height: 20px;
            border: 2.5px solid rgba(11, 14, 23, 0.25);
            border-top-color: var(--bg-1);
            border-radius: 50%;
            animation: spinFast 0.65s linear infinite;
            margin: 0 auto;
        }

        .btn-primary.is-loading .btn-label { display: none; }
        .btn-primary.is-loading .btn-spinner { display: block; }
        .btn-primary.is-loading { pointer-events: none; opacity: 0.85; }

        @keyframes spinFast {
            to { transform: rotate(360deg); }
        }

        /* ===========================
           FORGOT PASSWORD — btn-link / box-shadow-0 / px-0
           =========================== */
        .btn-link {
            background: none;
            color: var(--text-muted) !important;
            font-size: 13.5px;
            font-weight: 400;
            padding: 8px 0;
            border-radius: 0;
            text-decoration: none;
            display: block;
            text-align: center;
        }

        .btn-link:hover {
            color: var(--gold) !important;
        }

        .box-shadow-0 {
            box-shadow: none !important;
        }

        .px-0 {
            padding-left: 0 !important;
            padding-right: 0 !important;
        }

        /* ===========================
           FLOATING ORBS (extra atmosphere)
           =========================== */
        .bg-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(90px);
            z-index: 0;
            pointer-events: none;
        }

        .bg-orb-1 {
            width: 320px;
            height: 320px;
            background: rgba(0, 232, 157, 0.1);
            top: -80px;
            left: -60px;
            animation: orbMove1 20s ease-in-out infinite;
        }

        .bg-orb-2 {
            width: 260px;
            height: 260px;
            background: rgba(255, 179, 71, 0.07);
            bottom: -60px;
            right: -40px;
            animation: orbMove2 24s ease-in-out infinite;
        }

        .bg-orb-3 {
            width: 180px;
            height: 180px;
            background: rgba(0, 200, 140, 0.08);
            top: 50%;
            right: 10%;
            animation: orbMove3 16s ease-in-out infinite;
        }

        @keyframes orbMove1 {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(25px, -35px) scale(1.08); }
            66% { transform: translate(-15px, 20px) scale(0.95); }
        }

        @keyframes orbMove2 {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(-20px, 25px) scale(1.05); }
            66% { transform: translate(30px, -15px) scale(0.92); }
        }

        @keyframes orbMove3 {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(-25px, 30px); }
        }

        /* ===========================
           RESPONSIVE — ALL DEVICES
           =========================== */

        /* Large Desktop 1200px+ */
        @media (min-width: 1200px) {
            .container {
                max-width: 540px;
            }

            .card-body {
                padding: 55px 50px 50px;
            }
        }

        /* Desktop 992px–1199px */
        @media (min-width: 992px) and (max-width: 1199px) {
            .container {
                max-width: 500px;
            }

            .card-body {
                padding: 48px 40px 44px;
            }
        }

        /* Tablet 768px–991px */
        @media (min-width: 768px) and (max-width: 991px) {
            .container {
                max-width: 460px;
            }

            .card-body {
                padding: 44px 36px 40px;
            }

            .colorboard {
                font-size: 27px;
            }

            .card-body > img {
                width: 80px !important;
                height: 80px;
            }
        }

        /* Mobile Large 480px–767px */
        @media (min-width: 480px) and (max-width: 767px) {
            .mt-5 {
                margin-top: 1.5rem !important;
            }

            .container {
                max-width: 420px;
            }

            .card-body {
                padding: 38px 28px 34px;
            }

            .colorboard {
                font-size: 25px;
            }

            .card-body > img {
                width: 72px !important;
                height: 72px;
            }

            .form-control.textbox-dg {
                padding: 14px 18px 14px 42px;
                font-size: 14px;
            }

            .w-50 {
                width: 65% !important;
            }

            .bg-orb-1 { width: 220px; height: 220px; }
            .bg-orb-2 { width: 180px; height: 180px; }
            .bg-orb-3 { width: 120px; height: 120px; }
        }

        /* Mobile Small below 480px */
        @media (max-width: 479px) {
            #mainCoantiner {
                padding: 12px;
                align-items: flex-start;
                padding-top: 30px;
            }

            .mt-5 {
                margin-top: 0.5rem !important;
            }

            .container {
                max-width: 100%;
                padding: 0 8px;
            }

            .card {
                border-radius: 28px !important;
            }

            .card-body {
                padding: 30px 22px 28px;
                border-radius: 28px !important;
            }

            .colorboard {
                font-size: 23px;
                margin: 14px 0 2px;
            }

            .card-body > img {
                width: 64px !important;
                height: 64px;
                border-radius: 18px;
            }

            .form-control.textbox-dg {
                padding: 13px 16px 13px 40px;
                font-size: 13.5px;
                border-radius: 12px;
            }

            .input-group::after {
                border-radius: 0 0 12px 12px;
            }

            .btn-primary {
                padding: 14px 24px;
                font-size: 14px;
                border-radius: 12px;
            }

            .w-50 {
                width: 75% !important;
            }

            .btn-link {
                font-size: 12.5px;
            }

            .text-muted {
                font-size: 13px;
            }

            .bg-orb-1 { width: 160px; height: 160px; filter: blur(60px); }
            .bg-orb-2 { width: 140px; height: 140px; filter: blur(60px); }
            .bg-orb-3 { display: none; }
        }

        /* Very small screens below 360px */
        @media (max-width: 359px) {
            .card-body {
                padding: 24px 18px 22px;
            }

            .colorboard {
                font-size: 21px;
            }

            .card-body > img {
                width: 56px !important;
                height: 56px;
            }

            .w-50 {
                width: 85% !important;
            }
        }

        /* ===========================
           REDUCED MOTION
           =========================== */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }