        :root {
            --primary: #FF5C1B;
            --primary-dark: #e05015;
            --primary-light: #ff7c43;
            --secondary: #001a33;
            --dark: #1B1B1B;
            --darker: #000000;
            --light: #FFFFFF;
            --gray: #CCCCCC;
            --gray-dark: #333333;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, var(--darker) 0%, var(--secondary) 100%);
            color: var(--light);
            min-height: 100vh;
        }

        .main-content {
            display: flex;
            flex-direction: column;
            min-height: calc(100vh - 80px);
            /* Adjust for header height */
        }

        .login-container {
            background: var(--dark);
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            width: calc(100% - 40px);
            /* Ensure margin on mobile */
            max-width: 450px;
            border: 1px solid var(--primary);
            margin: 40px auto;
        }

        .login-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .login-header h1 {
            color: var(--primary);
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .login-header p {
            color: var(--gray);
            font-size: 1rem;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--gray);
        }

        .form-group input {
            width: 100%;
            padding: 12px 15px;
            border-radius: 5px;
            border: 1px solid var(--gray-dark);
            background: var(--darker);
            color: var(--light);
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 2px rgba(255, 92, 27, 0.2);
        }

        .btn {
            padding: 12px 20px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-family: 'Inter', sans-serif;
            width: 100%;
            font-size: 1rem;
        }

        .btn-primary {
            background: var(--primary);
            color: var(--light);
            box-shadow: 0 4px 10px rgba(255, 92, 27, 0.3);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(255, 92, 27, 0.4);
        }

        .btn-secondary {
            background: var(--gray-dark);
            color: var(--light);
        }

        .btn-secondary:hover {
            background: #444;
        }

        .login-footer {
            text-align: center;
            margin-top: 20px;
            color: var(--gray);
            font-size: 0.9rem;
        }

        .login-footer a {
            color: var(--primary);
            text-decoration: none;
        }

        .login-footer a:hover {
            text-decoration: underline;
        }

        .error-message {
            background: rgba(244, 67, 54, 0.2);
            color: #F44336;
            padding: 10px 15px;
            border-radius: 5px;
            margin-bottom: 20px;
            border: 1px solid #F44336;
            display: none;
        }

        .success-message {
            background: rgba(76, 175, 80, 0.2);
            color: #4CAF50;
            padding: 10px 15px;
            border-radius: 5px;
            margin-bottom: 20px;
            border: 1px solid #4CAF50;
            display: none;
        }

        .member-id-example {
            background: rgba(255, 92, 27, 0.1);
            border: 1px solid var(--primary);
            border-radius: 5px;
            padding: 15px;
            margin-top: 20px;
        }

        .member-id-example h3 {
            color: var(--primary);
            font-size: 1rem;
            margin-bottom: 10px;
        }

        .member-id-example p {
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 5px;
        }

        .member-id-example code {
            background: var(--darker);
            padding: 2px 5px;
            border-radius: 3px;
            font-family: monospace;
        }

        .otp-section {
            display: none;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid var(--gray-dark);
        }

        .resend-otp {
            text-align: center;
            margin-top: 15px;
        }

        .resend-otp a {
            color: var(--primary);
            text-decoration: none;
            cursor: pointer;
        }

        .resend-otp a:hover {
            text-decoration: underline;
        }

        /* Password visibility toggle styles */
        .password-field {
            position: relative;
        }

        .input-with-toggle {
            position: relative;
            display: flex;
            align-items: center;
        }

        .input-with-toggle input {
            padding-right: 45px;
        }

        .toggle-password {
            position: absolute;
            right: 0;
            top: 0;
            height: 100%;
            width: 45px;
            background: transparent;
            border: none;
            color: var(--primary);
            /* Changed to brand color for visibility */
            cursor: pointer;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            z-index: 5;
        }

        .toggle-password:hover {
            color: var(--primary);
            background: rgba(255, 92, 27, 0.1);
        }

        .toggle-password:focus {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }

        .toggle-password i {
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @media (max-width: 576px) {
            .login-container {
                padding: 30px 20px;
                margin: 20px;
            }

            .login-header h1 {
                font-size: 1.8rem;
            }
        }

        /* NAV CONTAINER FIX */
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            position: relative;
        }

        /* Prevent hamburger menu clipping */
        .header .container {
            overflow: visible !important;
        }

        /* Ensure header has proper background */
        .header {
            background: var(--dark);
            position: sticky;
            top: 0;
            z-index: 50;
        }

        /* ===== BULLETPROOF HAMBURGER (NO SPANS) ===== */
        .menu-toggle {
            display: none;
            width: 44px;
            height: 44px;
            position: relative;
            background: transparent;
            border: none;
            cursor: pointer;
            z-index: 100;
        }

        /* Top & Bottom lines */
        .menu-toggle::before,
        .menu-toggle::after {
            content: "";
            position: absolute;
            left: 9px;
            right: 9px;
            height: 3px;
            background: #ffffff;
            border-radius: 3px;
            transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease;
        }

        /* Top line */
        .menu-toggle::before {
            top: 14px;
        }

        /* Middle and bottom lines */
        .menu-toggle::after {
            top: 50%;
            transform: translateY(-50%);
            box-shadow: 0 8px 0 #ffffff;
        }

        /* ACTIVE STATE (X) */
        .menu-toggle.active::before {
            top: 50%;
            transform: rotate(45deg);
        }

        .menu-toggle.active::after {
            top: 50%;
            transform: rotate(-45deg);
            box-shadow: none;
        }

        /* MOBILE ONLY */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            .nav-container .menu-toggle {
                display: flex;
            }

            .nav-buttons {
                display: none !important;
            }

            /* Mobile menu with consistent positioning to match global styles */
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                /* Match global styles */
                width: 70%;
                height: 100vh;
                background: var(--dark);
                padding: 80px 20px;
                box-shadow: -3px 0 10px rgba(0, 0, 0, 0.4);
                transition: right 0.3s ease;
                /* Match global transition */
                z-index: 25;
            }

            .nav-menu.active {
                right: 0;
                /* Slide in from right */
            }

            .nav-menu ul {
                display: flex;
                flex-direction: column;
                gap: 20px;
                list-style: none;
                margin: 0;
                padding: 0;
            }

            .nav-menu ul li {
                width: 100%;
                text-align: center;
                margin: 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .nav-menu ul li:last-child {
                border-bottom: none;
            }

            .nav-menu a {
                color: white;
                font-size: 1.1rem;
                text-decoration: none;
                display: block;
                padding: 15px 0;
                transition: color 0.3s ease;
            }

            .nav-menu a:hover {
                color: var(--primary);
            }

            .mobile-login {
                display: block !important;
                background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
                color: #FFFFFF !important;
                font-weight: 600;
                border-radius: 30px;
                margin: 10px 20px;
                padding: 12px 20px !important;
                text-align: center;
                box-shadow: 0 4px 15px rgba(255, 92, 27, 0.4);
                transition: all 0.3s ease;
            }

            .mobile-login:hover {
                background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%) !important;
                box-shadow: 0 6px 20px rgba(255, 92, 27, 0.6);
                transform: translateY(-3px);
            }
        }

        /* DESKTOP */
        @media (min-width: 769px) {
            .mobile-login {
                display: none !important;
            }
        }

        /* Prevent page scroll when menu is open */
        body.menu-open {
            overflow: hidden;
        }