        /* Consolidated Admin Login Styles */
        :root {
            --primary: #FF5C1B;
            --primary-dark: #e05015;
            --primary-light: #ff7c43;
            --secondary: #001a33;
            --dark: #1B1B1B;
            --darker: #000000;
            --light: #FFFFFF;
            --gray: #CCCCCC;
            --gray-dark: #333333;
            --success: #4CAF50;
            --warning: #FFC107;
            --danger: #F44336;
            --info: #2196F3;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', 'Roboto', sans-serif;
            background: linear-gradient(135deg, var(--darker) 0%, var(--secondary) 100%);
            color: var(--light);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .login-container {
            background: var(--dark);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid var(--primary);
            width: 100%;
            max-width: 450px;
            position: relative;
            overflow: hidden;
        }

        .login-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), #FF9800);
        }

        .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-label {
            display: block;
            color: var(--gray);
            margin-bottom: 8px;
            font-weight: 500;
            font-size: 0.95rem;
        }

        .form-control {
            width: 100%;
            padding: 14px 15px;
            border-radius: 8px;
            border: 1px solid var(--gray-dark);
            background: #202020;
            color: var(--light);
            font-family: 'Poppins', 'Roboto', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(255, 92, 27, 0.3);
        }

        .btn {
            padding: 14px 20px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-family: 'Poppins', 'Roboto', sans-serif;
            text-decoration: none;
            display: inline-block;
            width: 100%;
            font-size: 1.1rem;
            margin-top: 10px;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: var(--primary);
            color: var(--light);
            box-shadow: 0 4px 15px rgba(255, 92, 27, 0.3);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 92, 27, 0.4);
        }

        .btn-secondary {
            background: var(--gray-dark);
            color: var(--light);
        }

        .btn-secondary:hover {
            background: #444;
        }

        .error-message {
            background: rgba(244, 67, 54, 0.1);
            border: 1px solid var(--danger);
            border-radius: 10px;
            padding: 15px;
            margin: 20px 0;
            color: var(--danger);
            display: none;
        }

        .success-message {
            background: rgba(76, 175, 80, 0.1);
            border: 1px solid var(--success);
            border-radius: 10px;
            padding: 15px;
            margin: 20px 0;
            color: var(--success);
            display: none;
        }

        .loading-spinner {
            display: none;
            text-align: center;
            padding: 15px;
        }

        .loading-spinner.show {
            display: block;
        }

        .spinner {
            border: 4px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top: 4px solid var(--primary);
            width: 30px;
            height: 30px;
            animation: spin 1s linear infinite;
            margin: 0 auto;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .back-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            padding: 10px 15px;
            border-radius: 5px;
            background: rgba(255, 92, 27, 0.1);
            margin-top: 20px;
            text-align: center;
            justify-content: center;
        }

        .back-link:hover {
            background: var(--primary);
            color: var(--light);
            text-decoration: none;
        }

        .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 .form-control {
            padding-right: 45px;
        }

        .toggle-password {
            position: absolute;
            right: 12px;
            background: transparent;
            border: none;
            color: var(--gray);
            cursor: pointer;
            padding: 8px;
            border-radius: 4px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            z-index: 2;
        }

        .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;
        }
