:root {
    --bg-gradient: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    --card-bg: rgba(255, 255, 255, 0.85);
    --card-border: rgba(15, 23, 42, 0.08);

    --primary-gradient: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);

    --text-main: #0f172a;
    --text-muted: #64748b;

    --accent-glow: rgba(14, 165, 233, 0.25);

    --danger-gradient: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-gradient);
            color: var(--text-main);
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* --- Background Effects --- */
        .bg-blur-circle {
            position: fixed;
            border-radius: 50%;
            filter: blur(100px);
            z-index: -1;
        }
        .circle-1 {
            width: 400px;
            height: 400px;
            background: rgba(6, 182, 212, 0.1);
            top: -100px;
            left: -100px;
        }
        .circle-2 {
            width: 350px;
            height: 350px;
            background: rgba(59, 130, 246, 0.1);
            bottom: 10%;
            right: -50px;
        }

        /* --- Header --- */
        header {
            background: rgba(194, 212, 255, 0.85);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--card-border);
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar-brand img {
            max-width: 140px;
            filter: brightness(0) invert(1); /* Makes logo white */
        }

        .nav-link {
            color: black !important;
            font-weight: 500;
            margin: 0 8px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--text-main) !important;
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary-gradient);
            border-radius: 2px;
        }

        .navbar-toggler {
            border: 1px solid var(--card-border);
        }
        .navbar-toggler-icon {
            filter: invert(1);
        }

        /* --- Glassmorphism Cards --- */
        .glass-card {
            background: var(--card-bg);
            backdrop-filter: blur(16px);
            border: 1px solid rgb(29 80 200 / 36%);
            border-radius: 16px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            overflow: hidden;
        }

        .glass-card:hover {
            transform: translateY(-5px);
            border-color: rgba(6, 182, 212, 0.3);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3), 0 0 20px var(--accent-glow);
        }

        /* --- Instructions Card --- */
        .instruction-header {
            background: var(--danger-gradient);
            padding: 16px 20px;
            color: white;
            border-radius: 16px 16px 0 0;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .instruction-body {
            padding: 24px;
        }

        .instruction-list {
            padding-left: 20px;
            margin-bottom: 24px;
        }

        .instruction-list li {
            margin-bottom: 16px;
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .instruction-list li strong {
            color: var(--text-main);
            font-weight: 600;
        }

        .highlight {
            color: #ef4444;
            font-weight: 600;
        }

        .signature {
            font-size: 0.85rem;
            color: rgba(34, 38, 43, 0.81);
            font-style: italic;
        }

        .verify-box {
            background: rgba(15, 23, 42, 0.5);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px dashed var(--card-border);
        }

        .verify-btn {
            display: inline-block;
            padding: 10px 28px;
            background: var(--primary-gradient);
            color: white;
            font-weight: 600;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(6, 182, 212, 0.2);
            border: none;
        }

        .verify-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(6, 182, 212, 0.4);
            color: white;
        }

        /* --- Course Cards --- */
        .course-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            border: 1px solid var(--card-border);
            transition: all 0.4s ease;
            height: 100%;
        }

        .course-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px var(--accent-glow);
            border-color: rgba(6, 182, 212, 0.5);
        }

        .course-card img {
            width: 100%;
            height: 240px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .course-card:hover img {
            transform: scale(1.1);
        }

        .course-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            padding: 6px 14px;
            font-size: 0.8rem;
            font-weight: 700;
            color: white;
            border-radius: 6px;
            z-index: 10;
            backdrop-filter: blur(4px);
            letter-spacing: 0.5px;
        }

        .live-badge {
            background: rgba(239, 68, 68, 0.9);
            box-shadow: 0 0 12px rgba(239, 68, 68, 0.6);
        }

        .recorded-badge {
            background: rgba(59, 130, 246, 0.9);
            box-shadow: 0 0 12px rgba(59, 130, 246, 0.4);
        }

        .course-name-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent);
            padding: 40px 20px 20px;
            color: white;
            font-weight: 600;
            font-size: 1rem;
            line-height: 1.4;
        }

        /* --- Modal --- */
        .modal-content {
            background: #1e293b;
            border: 1px solid var(--card-border);
            color: var(--text-main);
            border-radius: 16px;
        }

        .modal-header {
            border-bottom: 1px solid var(--card-border);
        }

        .modal-footer {
            border-top: 1px solid var(--card-border);
        }

        .btn-close {
            filter: invert(1);
        }

        .form-control {
            background-color: rgba(15, 23, 42, 0.5);
            border: 1px solid var(--card-border);
            color: var(--text-main);
            border-radius: 8px;
            padding: 12px;
        }

        .form-control:focus {
            background-color: rgba(15, 23, 42, 0.8);
            border-color: #06b6d4;
            box-shadow: 0 0 0 2px var(--accent-glow);
            color: var(--text-main);
        }

        .form-control::placeholder {
            color: var(--text-muted);
        }

        .btn-primary {
            background: var(--primary-gradient);
            border: none;
            padding: 10px 24px;
            font-weight: 600;
        }

        .btn-primary:hover {
            box-shadow: 0 6px 16px rgba(6, 182, 212, 0.4);
            transform: translateY(-1px);
        }

        /* Google Translate Override */
        #google_translate_element {
            position: relative;
        }
        
        .goog-te-gadget-simple {
            background-color: rgba(30, 41, 59, 0.5) !important;
            border: 1px solid var(--card-border) !important;
            color: var(--text-main) !important;
            border-radius: 8px !important;
            padding: 6px 10px !important;
            cursor: pointer;
        }

        .goog-te-gadget-simple span {
            color: white !important;
        }

        @media (max-width: 768px) {
            .navbar-nav-center {
                flex-direction: column;
                text-align: center;
            }
            #translate-container {
                position: static;
                transform: none;
                margin-top: 10px;
                text-align: center;
            }
            .navbar-brand {
                position: static;
                transform: none;
                margin-bottom: 10px;
            }
            .course-card img {
                height: 200px !important;
            }
        }
         /* --- Background Effects --- */
        .bg-blur-circle {
            position: fixed;
            border-radius: 50%;
            filter: blur(80px);
            z-index: -1;
        }
        .circle-1 {
            width: 400px;
            height: 400px;
            background: rgba(6, 182, 212, 0.15);
            top: -100px;
            left: -100px;
        }
        .circle-2 {
            width: 300px;
            height: 300px;
            background: rgba(59, 130, 246, 0.15);
            bottom: -50px;
            right: -50px;
        }

        /* --- Header --- */
        header {
            background: rgba(194, 212, 255, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--card-border);
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar-brand img {
            max-width: 140px;
            filter: brightness(0) invert(1); /* Makes logo white */
        }

        .nav-link {
            color: black !important;
            font-weight: 500;
            margin: 0 8px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--text-main) !important;
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary-gradient);
            border-radius: 2px;
        }

        /* --- Filter Section --- */
        .filter-section h5 {
            font-weight: 700;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 1.5rem;
        }

        .form-select {
            background-color: rgba(30, 41, 59, 0.5);
            border: 1px solid var(--card-border);
            color: var(--text-main);
            backdrop-filter: blur(4px);
            padding: 0.5rem 1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .form-select:focus {
            box-shadow: 0 0 0 2px var(--accent-glow);
            border-color: #06b6d4;
        }

        .form-select option {
            background-color: #1e293b;
            color: var(--text-main);
        }

        /* --- Cards --- */
        .course-card {
            background: var(--card-bg);
            backdrop-filter: blur(16px);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            overflow: hidden;
            position: relative;
        }

        .course-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--primary-gradient);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .course-card:hover {
            transform: translateY(-8px);
            border-color: rgba(6, 182, 212, 0.3);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3), 0 0 16px var(--accent-glow);
        }

        .course-card:hover::before {
            opacity: 1;
        }

        /* Profile Image */
        .profile-img {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid transparent;
            background-origin: border-box;
            background-clip: content-box, border-box;
            background-image: linear-gradient(#1e293b, #1e293b), var(--primary-gradient);
            margin-bottom: 1rem;
            transition: transform 0.3s ease;
        }

        .course-card:hover .profile-img {
            transform: scale(1.05);
        }

        /* Name & Role */
        .highlight-district {
            display: block;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 0.5rem;
        }

        .role-badge {
            display: inline-block;
            background: rgba(6, 182, 212, 0.15);
            color: #22d3ee;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .card-text {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .card-text strong {
            color: var(--text-main);
            font-weight: 500;
        }

        /* Connect Button */
        .connect-btn {
            background: var(--primary-gradient);
            color: white;
            border: none;
            padding: 8px 24px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(6, 182, 212, 0.2);
            margin-top: 0.5rem;
        }

        .connect-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(6, 182, 212, 0.4);
            color: white;
        }

        /* --- Modal --- */
        .modal-content {
            background: #1e293b;
            border: 1px solid var(--card-border);
            color: var(--text-main);
        }

        .modal-header {
            border-bottom: 1px solid var(--card-border);
        }

        .modal-footer {
            border-top: 1px solid var(--card-border);
        }

        .btn-close {
            filter: invert(1);
        }

        /* Loader */
        .spinner-border {
            color: #06b6d4;
        }

        /* Google Translate Override */
        #google_translate_element {
            position: relative;
        }
        
        .goog-te-gadget-simple {
            background-color: rgba(30, 41, 59, 0.5) !important;
            border: 1px solid var(--card-border) !important;
            color: var(--text-main) !important;
            border-radius: 8px !important;
            padding: 4px 8px !important;
            cursor: pointer;
        }

        .goog-te-gadget-simple span {
            color: white !important;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .filter-section {
                flex-direction: column;
                align-items: flex-start !important;
            }
        }

         /* --- Background Effects --- */
        .bg-blur-circle {
            position: fixed;
            border-radius: 50%;
            filter: blur(100px);
            z-index: -1;
        }
        .circle-1 {
            width: 400px;
            height: 400px;
            background: rgba(6, 182, 212, 0.1);
            top: -100px;
            left: -100px;
        }
        .circle-2 {
            width: 350px;
            height: 350px;
            background: rgba(59, 130, 246, 0.1);
            bottom: 10%;
            right: -50px;
        }
        .circle-3 {
            width: 300px;
            height: 300px;
            background: rgba(255, 0, 0, 0.05); /* Slight red glow for youtube vibe */
            top: 20%;
            right: 20%;
        }

        /* --- Header --- */
        header {
            background: rgba(194, 212, 255, 0.85);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--card-border);
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar-brand img {
            max-width: 140px;
            filter: brightness(0) invert(1);
        }

        .nav-link {
            color: black !important;
            font-weight: 500;
            margin: 0 8px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--text-main) !important;
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary-gradient);
            border-radius: 2px;
        }

        .navbar-toggler {
            border: 1px solid var(--card-border);
        }
        .navbar-toggler-icon {
            filter: invert(1);
        }

        /* --- Section Header --- */
        .section-header h2 {
            font-weight: 700;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 2rem;
        }

        .btn-youtube {
            background: rgba(255, 0, 0, 0.15);
            border: 1px solid rgba(255, 0, 0, 0.4);
            color: #ff4d4d;
            font-weight: 600;
            padding: 10px 24px;
            border-radius: 8px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn-youtube:hover {
            background: var(--youtube-red);
            color: white;
            box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
            transform: translateY(-2px);
        }

        /* --- Video Cards --- */
        .video-card {
            background: var(--card-bg);
            backdrop-filter: blur(16px);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .video-card:hover {
            transform: translateY(-8px);
            border-color: rgba(6, 182, 212, 0.4);
            box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3), 0 0 24px var(--accent-glow);
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
            border-bottom: 1px solid var(--card-border);
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Play button overlay effect (Shows only if iframe doesn't load immediately) */
        .video-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 60%, rgba(15, 23, 42, 0.8));
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .video-card:hover .video-wrapper::after {
            opacity: 1;
        }

        .podcast-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .card-title {
            color: var(--text-main);
            font-weight: 600;
            font-size: 1.05rem;
            margin-bottom: 0;
            line-height: 1.5;
        }

        /* Google Translate Override */
        #google_translate_element {
            position: relative;
        }
        
        .goog-te-gadget-simple {
            background-color: rgba(30, 41, 59, 0.5) !important;
            border: 1px solid var(--card-border) !important;
            color: var(--text-main) !important;
            border-radius: 8px !important;
            padding: 6px 10px !important;
            cursor: pointer;
        }

        .goog-te-gadget-simple span {
            color: white !important;
        }

        @media (max-width: 768px) {
            .navbar-nav-center {
                flex-direction: column;
                text-align: center;
            }
            #translate-container {
                position: static;
                transform: none;
                margin-top: 10px;
                text-align: center;
            }
            .navbar-brand {
                position: static;
                transform: none;
                margin-bottom: 10px;
            }
            .section-header {
                flex-direction: column;
                align-items: flex-start !important;
            }
            .section-header .btn-youtube {
                margin-top: 15px;
            }
        }

          /* --- Background Effects --- */
        .bg-blur-circle {
            position: fixed;
            border-radius: 50%;
            filter: blur(100px);
            z-index: -1;
        }
        .circle-1 {
            width: 400px;
            height: 400px;
            background: rgba(6, 182, 212, 0.1);
            top: -100px;
            left: -100px;
        }
        .circle-2 {
            width: 350px;
            height: 350px;
            background: rgba(59, 130, 246, 0.1);
            bottom: 10%;
            right: -50px;
        }
        .circle-3 {
            width: 300px;
            height: 300px;
            background: rgba(6, 182, 212, 0.05);
            top: 40%;
            right: 25%;
        }

        /* --- Header --- */
        header {
            background: rgba(194, 212, 255, 0.85);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--card-border);
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar-brand img {
            max-width: 140px;
            filter: brightness(0) invert(1);
        }

        .nav-link {
            color: black !important;
            font-weight: 500;
            margin: 0 8px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--text-main) !important;
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary-gradient);
            border-radius: 2px;
        }

        .navbar-toggler {
            border: 1px solid var(--card-border);
        }
        .navbar-toggler-icon {
            filter: invert(1);
        }

        /* --- Section Header --- */
        .section-header h2 {
            font-weight: 700;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 2rem;
        }

        /* --- Info Cards --- */
        .info-card {
            background: var(--card-bg);
            backdrop-filter: blur(16px);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            padding: 28px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--primary-gradient);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-8px);
            border-color: rgba(6, 182, 212, 0.4);
            box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3), 0 0 24px var(--accent-glow);
        }

        .info-card:hover::before {
            opacity: 1;
        }

        .info-card .card-icon {
            width: 52px;
            height: 52px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
            font-size: 1.3rem;
            transition: all 0.3s ease;
        }

        .info-card:hover .card-icon {
            transform: scale(1.1);
        }

        .icon-cyan {
            background: rgba(6, 182, 212, 0.15);
            color: #06b6d4;
            border: 1px solid rgba(6, 182, 212, 0.3);
        }

        .icon-blue {
            background: rgba(59, 130, 246, 0.15);
            color: #3b82f6;
            border: 1px solid rgba(59, 130, 246, 0.3);
        }

        .icon-purple {
            background: rgba(139, 92, 246, 0.15);
            color: #8b5cf6;
            border: 1px solid rgba(139, 92, 246, 0.3);
        }

        .icon-emerald {
            background: rgba(16, 185, 129, 0.15);
            color: #10b981;
            border: 1px solid rgba(16, 185, 129, 0.3);
        }

        .icon-amber {
            background: rgba(245, 158, 11, 0.15);
            color: #f59e0b;
            border: 1px solid rgba(245, 158, 11, 0.3);
        }

        .icon-rose {
            background: rgba(244, 63, 94, 0.15);
            color: #f43f5e;
            border: 1px solid rgba(244, 63, 94, 0.3);
        }

        .info-card h5 {
            font-weight: 600;
            font-size: 1.15rem;
            margin-bottom: 12px;
            color: var(--text-main);
        }

        .info-card p,
        .info-card li {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .info-card ol {
            padding-left: 18px;
            margin: 0;
        }

        .info-card ol li {
            margin-bottom: 8px;
        }

        .info-card ol li strong {
            color: var(--text-main);
        }

        /* --- Mission Card (Full Width) --- */
        .mission-card {
            background: var(--card-bg);
            backdrop-filter: blur(16px);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            padding: 32px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .mission-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--primary-gradient);
        }

        .mission-card:hover {
            transform: translateY(-5px);
            border-color: rgba(6, 182, 212, 0.3);
            box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3), 0 0 24px var(--accent-glow);
        }

        .mission-card h5 {
            font-weight: 700;
            font-size: 1.3rem;
            margin-bottom: 16px;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .mission-card p {
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 0;
        }

        .mission-card h6 {
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--text-main);
            margin-top: 24px;
            margin-bottom: 12px;
        }

        .mission-card ol li strong {
            color: var(--text-main);
        }

        /* --- Stats Row --- */
        .stat-item {
            text-align: center;
            padding: 24px 16px;
            position: relative;
        }

        .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 20%;
            height: 60%;
            width: 1px;
            background: var(--card-border);
        }

        .stat-number {
            font-size: 2.2rem;
            font-weight: 700;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
            margin-bottom: 6px;
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* --- Contact Banner --- */
        .contact-banner {
            background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
            border: 1px solid rgba(6, 182, 212, 0.2);
            border-radius: 16px;
            padding: 32px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .contact-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(6, 182, 212, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }

        .contact-banner h5 {
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--text-main);
            margin-bottom: 8px;
            position: relative;
        }

        .contact-banner p {
            color: var(--text-muted);
            margin-bottom: 0;
            position: relative;
        }

        .contact-banner a {
            color: #06b6d4;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .contact-banner a:hover {
            color: #3b82f6;
            text-shadow: 0 0 12px var(--accent-glow);
        }

        .btn-contact {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--primary-gradient);
            color: white;
            font-weight: 600;
            padding: 10px 28px;
            border-radius: 8px;
            transition: all 0.3s ease;
            text-decoration: none;
            margin-top: 18px;
            position: relative;
        }

        .btn-contact:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px var(--accent-glow), 0 0 16px var(--accent-blue-glow);
            color: white;
        }

        /* --- Google Translate Override --- */
        #google_translate_element {
            position: relative;
        }

        .goog-te-gadget-simple {
            background-color: rgba(30, 41, 59, 0.5) !important;
            border: 1px solid var(--card-border) !important;
            color: var(--text-main) !important;
            border-radius: 8px !important;
            padding: 6px 10px !important;
            cursor: pointer;
        }

        .goog-te-gadget-simple span {
            color: white !important;
        }

        @media (max-width: 768px) {
            .navbar-nav-center {
                flex-direction: column;
                text-align: center;
            }
            #translate-container {
                position: static;
                transform: none;
                margin-top: 10px;
                text-align: center;
            }
            .navbar-brand {
                position: static;
                transform: none;
                margin-bottom: 10px;
            }
            .section-header {
                flex-direction: column;
                align-items: flex-start !important;
            }
            .stat-item:not(:last-child)::after {
                display: none;
            }
            .stat-item {
                border-bottom: 1px solid var(--card-border);
            }
            .stat-item:last-child {
                border-bottom: none;
            }
        }

        @media (max-width: 576px) {
            .section-header h2 {
                font-size: 1.6rem;
            }
            .stat-number {
                font-size: 1.8rem;
            }
        }

         /* --- Background Effects --- */
        .bg-blur-circle {
            position: fixed;
            border-radius: 50%;
            filter: blur(100px);
            z-index: -1;
        }
        .circle-1 {
            width: 400px;
            height: 400px;
            background: rgba(6, 182, 212, 0.1);
            top: -100px;
            left: -100px;
        }
        .circle-2 {
            width: 350px;
            height: 350px;
            background: rgba(59, 130, 246, 0.1);
            bottom: 10%;
            right: -50px;
        }
        .circle-3 {
            width: 300px;
            height: 300px;
            background: rgba(6, 182, 212, 0.05);
            top: 40%;
            right: 25%;
        }

        /* --- Header --- */
        header {
            background: rgba(194, 212, 255, 0.85);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--card-border);
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar-brand img {
            max-width: 140px;
            filter: brightness(0) invert(1);
        }

        .nav-link {
            color: black !important;
            font-weight: 500;
            margin: 0 8px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--text-main) !important;
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary-gradient);
            border-radius: 2px;
        }

        .navbar-toggler {
            border: 1px solid var(--card-border);
        }
        .navbar-toggler-icon {
            filter: invert(1);
        }

        /* --- Section Header --- */
        .section-header h2 {
            font-weight: 700;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 2rem;
        }

        /* --- Contact Cards --- */
        .contact-card {
            background: var(--card-bg);
            backdrop-filter: blur(16px);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            padding: 32px 24px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--primary-gradient);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .contact-card:hover {
            transform: translateY(-8px);
            border-color: rgba(6, 182, 212, 0.4);
            box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3), 0 0 24px var(--accent-glow);
        }

        .contact-card:hover::before {
            opacity: 1;
        }

        .contact-card .card-icon {
            width: 60px;
            height: 60px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.4rem;
            transition: all 0.3s ease;
        }

        .contact-card:hover .card-icon {
            transform: scale(1.1);
        }

        .icon-cyan {
            background: rgba(6, 182, 212, 0.15);
            color: #06b6d4;
            border: 1px solid rgba(6, 182, 212, 0.3);
        }

        .icon-blue {
            background: rgba(59, 130, 246, 0.15);
            color: #3b82f6;
            border: 1px solid rgba(59, 130, 246, 0.3);
        }

        .icon-purple {
            background: rgba(139, 92, 246, 0.15);
            color: #8b5cf6;
            border: 1px solid rgba(139, 92, 246, 0.3);
        }

        .contact-card h5 {
            font-weight: 600;
            font-size: 1.15rem;
            margin-bottom: 16px;
            color: var(--text-main);
        }

        .contact-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 6px;
        }

        .contact-card a {
            color: #06b6d4;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .contact-card a:hover {
            color: #3b82f6;
            text-shadow: 0 0 12px var(--accent-glow);
        }

        .contact-info-icon {
            color: #06b6d4;
            margin-right: 8px;
            width: 16px;
            text-align: center;
        }

        /* --- Map Section --- */
        .map-card {
            background: var(--card-bg);
            backdrop-filter: blur(16px);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            overflow: hidden;
            position: relative;
        }

        .map-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--primary-gradient);
            z-index: 2;
        }

        .map-card iframe {
            width: 100%;
            height: 350px;
            border: none;
            display: block;
            filter: brightness(0.85) contrast(1.1) saturate(0.8);
        }

        .map-card .map-overlay-label {
            position: absolute;
            bottom: 16px;
            left: 16px;
            background: rgba(15, 23, 42, 0.85);
            backdrop-filter: blur(12px);
            border: 1px solid var(--card-border);
            border-radius: 10px;
            padding: 12px 16px;
            z-index: 3;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .map-overlay-label i {
            color: #06b6d4;
            font-size: 1.1rem;
        }

        .map-overlay-label span {
            color: var(--text-main);
            font-size: 0.85rem;
            font-weight: 500;
        }

        /* --- CTA Section --- */
        .cta-card {
            background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
            border: 1px solid rgba(6, 182, 212, 0.2);
            border-radius: 16px;
            padding: 36px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(6, 182, 212, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }

        .cta-card h5 {
            font-weight: 700;
            font-size: 1.3rem;
            color: var(--text-main);
            margin-bottom: 10px;
            position: relative;
        }

        .cta-card p {
            color: var(--text-muted);
            font-size: 1rem;
            margin-bottom: 0;
            position: relative;
        }

        .btn-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--primary-gradient);
            color: white;
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 10px;
            transition: all 0.3s ease;
            text-decoration: none;
            margin-top: 20px;
            position: relative;
            font-size: 0.95rem;
        }

        .btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px var(--accent-glow), 0 0 16px var(--accent-blue-glow);
            color: white;
        }

        /* --- Google Translate Override --- */
        #google_translate_element {
            position: relative;
        }

        .goog-te-gadget-simple {
            background-color: rgba(30, 41, 59, 0.5) !important;
            border: 1px solid var(--card-border) !important;
            color: var(--text-main) !important;
            border-radius: 8px !important;
            padding: 6px 10px !important;
            cursor: pointer;
        }

        .goog-te-gadget-simple span {
            color: white !important;
        }

        @media (max-width: 768px) {
            .navbar-nav-center {
                flex-direction: column;
                text-align: center;
            }
            #translate-container {
                position: static;
                transform: none;
                margin-top: 10px;
                text-align: center;
            }
            .navbar-brand {
                position: static;
                transform: none;
                margin-bottom: 10px;
            }
            .section-header {
                flex-direction: column;
                align-items: flex-start !important;
            }
            .map-card iframe {
                height: 260px;
            }
        }

        @media (max-width: 576px) {
            .section-header h2 {
                font-size: 1.6rem;
            }
            .cta-card {
                padding: 24px;
            }
        }

         /* --- Background Effects --- */
        .bg-blur-circle {
            position: fixed;
            border-radius: 50%;
            filter: blur(100px);
            z-index: -1;
        }
        .circle-1 {
            width: 400px;
            height: 400px;
            background: rgba(6, 182, 212, 0.12);
            top: -100px;
            left: -100px;
        }
        .circle-2 {
            width: 350px;
            height: 350px;
            background: rgba(59, 130, 246, 0.1);
            bottom: 5%;
            right: -50px;
        }
        .circle-3 {
            width: 250px;
            height: 250px;
            background: rgba(6, 182, 212, 0.06);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        /* --- Header --- */
        header {
            background: rgba(194, 212, 255, 0.85);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--card-border);
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar-brand img {
            max-width: 140px;
            filter: brightness(0) invert(1);
        }

        .nav-link {
            color: black !important;
            font-weight: 500;
            margin: 0 8px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--text-main) !important;
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary-gradient);
            border-radius: 2px;
        }

        .navbar-toggler {
            border: 1px solid var(--card-border);
        }
        .navbar-toggler-icon {
            filter: invert(1);
        }

        /* --- Login Container --- */
        .login-wrapper {
            min-height: calc(100vh - 70px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 16px;
        }

        .login-card {
            background: var(--card-bg);
            backdrop-filter: blur(16px);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            width: 100%;
            max-width: 460px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .login-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--primary-gradient);
        }

        .login-card:hover {
            border-color: rgba(6, 182, 212, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px var(--accent-glow);
        }

        .login-card-inner {
            padding: 36px 32px;
        }

        /* --- Login Logo --- */
        .login-logo-wrap {
            text-align: center;
            margin-bottom: 28px;
        }

        .login-logo-icon {
            width: 68px;
            height: 68px;
            border-radius: 16px;
            background: rgba(6, 182, 212, 0.12);
            border: 1px solid rgba(6, 182, 212, 0.25);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 14px;
            transition: all 0.3s ease;
        }

        .login-logo-icon:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
        }

        .login-logo-icon i {
            font-size: 1.6rem;
            color: #06b6d4;
        }

        .login-title {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--text-main);
            margin-bottom: 4px;
        }

        .login-subtitle {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        /* --- Form Controls --- */
        .form-label-custom {
            display: block;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--text-muted);
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .input-group-custom {
            position: relative;
            margin-bottom: 20px;
        }

        .input-group-custom .input-icon-left {
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 46px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #475569;
            font-size: 0.9rem;
            transition: color 0.3s ease;
            pointer-events: none;
            z-index: 2;
            border-right: 1px solid var(--input-border);
        }

        .input-group-custom input {
            width: 100%;
            padding: 13px 14px 13px 52px;
            background: var(--input-bg);
            border: 1px solid var(--input-border);
            border-radius: 10px;
            color: var(--text-main);
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            outline: none;
        }

        .input-group-custom input::placeholder {
            color: #475569;
        }

        .input-group-custom input:focus {
            border-color: var(--input-focus-border);
            box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1), 0 0 16px rgba(6, 182, 212, 0.08);
            background: rgba(15, 23, 42, 0.8);
        }

        .input-group-custom input:focus ~ .input-icon-left {
            color: #06b6d4;
            border-right-color: var(--input-focus-border);
        }

        /* Password toggle button */
        .btn-toggle-pw {
            position: absolute;
            right: 4px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #475569;
            font-size: 0.95rem;
            cursor: pointer;
            padding: 8px 10px;
            border-radius: 8px;
            transition: all 0.2s ease;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .btn-toggle-pw:hover {
            color: #06b6d4;
            background: rgba(6, 182, 212, 0.08);
        }

        /* Validation */
        .input-group-custom input.is-invalid {
            border-color: #f43f5e !important;
            box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.1);
        }

        .input-group-custom input.is-invalid ~ .input-icon-left {
            color: #f43f5e;
            border-right-color: rgba(244, 63, 94, 0.3);
        }

        .field-error {
            color: #f43f5e;
            font-size: 0.8rem;
            margin-top: 6px;
            padding-left: 2px;
            display: none;
        }

        .input-group-custom input.is-invalid ~ .field-error {
            display: block;
        }

        /* --- Forgot Password Link --- */
        .forgot-link {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 0.84rem;
            color: #06b6d4;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .forgot-link:hover {
            color: #3b82f6;
            text-shadow: 0 0 12px var(--accent-glow);
        }

        .forgot-link i {
            font-size: 0.72rem;
        }

        /* --- Login Button --- */
        .btn-login {
            width: 100%;
            padding: 14px;
            background: var(--primary-gradient);
            border: none;
            border-radius: 10px;
            color: white;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            letter-spacing: 0.3px;
        }

        .btn-login:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px var(--accent-glow), 0 0 16px var(--accent-blue-glow);
        }

        .btn-login:active {
            transform: translateY(0);
        }

        .btn-login:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .btn-login .spinner-border {
            width: 18px;
            height: 18px;
            border-width: 2px;
        }

        /* --- Register Link --- */
        .register-link {
            text-align: center;
            margin-top: 22px;
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .register-link a {
            color: #06b6d4;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .register-link a:hover {
            color: #3b82f6;
            text-shadow: 0 0 12px var(--accent-glow);
        }

        /* --- Instructions Section --- */
        .instructions-card {
            background: var(--card-bg);
            backdrop-filter: blur(16px);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            position: relative;
            overflow: hidden;
            max-width: 460px;
            margin: 0 auto;
        }

        .instructions-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--primary-gradient);
        }

        .instructions-inner {
            padding: 28px 28px 24px;
        }

        .instructions-title {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--text-main);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .instructions-title i {
            color: #06b6d4;
        }

        .instructions-list {
            list-style: none;
            padding: 0;
            margin: 0;
            counter-reset: step-counter;
        }

        .instructions-list li {
            counter-increment: step-counter;
            position: relative;
            padding-left: 36px;
            margin-bottom: 14px;
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.65;
        }

        .instructions-list li:last-child {
            margin-bottom: 0;
        }

        .instructions-list li::before {
            content: counter(step-counter);
            position: absolute;
            left: 0;
            top: 1px;
            width: 24px;
            height: 24px;
            border-radius: 6px;
            background: rgba(6, 182, 212, 0.12);
            border: 1px solid rgba(6, 182, 212, 0.25);
            color: #06b6d4;
            font-size: 0.75rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .instructions-list li strong {
            color: var(--text-main);
        }

        .instructions-contact {
            margin-top: 18px;
            padding-top: 16px;
            border-top: 1px solid var(--card-border);
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .instructions-contact a {
            color: #06b6d4;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .instructions-contact a:hover {
            color: #3b82f6;
        }

        .instructions-contact strong {
            color: var(--text-main);
        }

        /* --- Modal Overrides --- */
        .modal-content {
            background: #1e293b;
            border: 1px solid var(--card-border);
            border-radius: 16px;
            color: var(--text-main);
        }

        .modal-header {
            border-bottom: 1px solid var(--card-border);
            padding: 20px 24px;
        }

        .modal-title {
            font-weight: 600;
            font-size: 1.1rem;
        }

        .modal-header .btn-close {
            filter: invert(1) grayscale(100%) brightness(200%);
            opacity: 0.7;
        }

        .modal-header .btn-close:hover {
            opacity: 1;
        }

        .modal-body {
            padding: 24px;
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .modal-body strong {
            color: var(--text-main);
        }

        .modal-footer {
            border-top: 1px solid var(--card-border);
            padding: 16px 24px;
        }

        .modal .form-label {
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--text-muted);
            margin-bottom: 6px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .modal .form-control {
            background: var(--input-bg);
            border: 1px solid var(--input-border);
            border-radius: 10px;
            color: var(--text-main);
            padding: 12px 14px;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
        }

        .modal .form-control::placeholder {
            color: #475569;
        }

        .modal .form-control:focus {
            border-color: var(--input-focus-border);
            box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
            background: rgba(15, 23, 42, 0.8);
            color: var(--text-main);
        }

        .btn-modal-primary {
            background: var(--primary-gradient);
            border: none;
            border-radius: 10px;
            padding: 10px 28px;
            color: white;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
        }

        .btn-modal-primary:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 16px var(--accent-glow);
            color: white;
        }

        .modal .invalid-feedback {
            color: #f43f5e;
            font-size: 0.8rem;
        }

        .modal .form-control.is-invalid {
            border-color: #f43f5e;
            box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.1);
        }

        .modal-backdrop {
            backdrop-filter: blur(4px);
        }

        /* --- Google Translate Override --- */
        #google_translate_element {
            position: relative;
        }

        .goog-te-gadget-simple {
            background-color: rgba(30, 41, 59, 0.5) !important;
            border: 1px solid var(--card-border) !important;
            color: var(--text-main) !important;
            border-radius: 8px !important;
            padding: 6px 10px !important;
            cursor: pointer;
        }

        .goog-te-gadget-simple span {
            color: white !important;
        }

        /* --- Responsive --- */
        @media (max-width: 768px) {
            .navbar-nav-center {
                flex-direction: column;
                text-align: center;
            }
            #translate-container {
                position: static;
                transform: none;
                margin-top: 10px;
                text-align: center;
            }
            .navbar-brand {
                position: static;
                transform: none;
                margin-bottom: 10px;
            }
            .login-card-inner {
                padding: 28px 20px;
            }
            .instructions-inner {
                padding: 24px 20px 20px;
            }
        }

        @media (max-width: 576px) {
            .login-wrapper {
                padding: 24px 12px;
            }
        }