    /* Login Page Styles */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        --primary-color: #2563eb;
        --primary-hover: #1d4ed8;
        --secondary-color: #60a5fa;
        --text-color: #1e293b;
        --text-light: #64748b;
        --bg-color: #f8fafc;
        --white: #ffffff;
        --error-bg: #fee2e2;
        --error-text: #dc2626;
        --success-bg: #dcfce7;
        --success-text: #16a34a;
        --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    body {
        font-family: 'Poppins', sans-serif;
        background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
        margin: 0;
    }

    body.login-page {
        font-family: 'Poppins', sans-serif !important;
        background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
        min-height: 100vh !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        color: var(--text-color) !important;
        line-height: 1.5 !important;
        position: relative !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    body.login-page::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(124, 58, 237, 0.1)" stroke-width="2"/></svg>') repeat !important;
        opacity: 0.1 !important;
        animation: rotate 20s linear infinite !important;
        pointer-events: none !important;
        z-index: -1 !important;
    }

    @keyframes rotate {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    .login-wrapper {
        width: 100%;
        max-width: 420px;
        position: relative;
        z-index: 1;
    }

    .login-container {
        background: white;
        padding: 2.5rem;
        border-radius: 1.5rem;
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
        width: 100%;
        position: relative;
        overflow: hidden;
    }

    .login-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        z-index: 1;
        pointer-events: none;
    }

    .login-container::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 150%;
        height: 150%;
        background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
        transform: translate(-50%, -50%) rotate(45deg);
        animation: pulse 4s ease-in-out infinite;
        pointer-events: none;
        z-index: 0;
    }

    @keyframes pulse {
        0%, 100% { opacity: 0.5; }
        50% { opacity: 0.8; }
    }

    .login-header {
        position: relative;
        z-index: 2;
        text-align: center;
        margin-bottom: 2rem;
    }

    .login-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .login-logo i {
        font-size: 2.5rem;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: float 3s ease-in-out infinite;
        display: inline-block;
        transform-origin: center;
        position: relative;
        will-change: transform;
        backface-visibility: hidden;
    }

    .login-logo h1 {
        font-size: 2rem;
        font-weight: 600;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .login-header p {
        color: var(--text-light);
        font-size: 0.875rem;
    }

    .login-form {
        position: relative;
        z-index: 10;
    }

    .login-form-group {
        margin-bottom: 1.5rem;
        position: relative;
        z-index: 10;
    }

    .login-input-wrapper {
        position: relative;
        z-index: 10;
    }

    .login-input-wrapper i {
        position: absolute;
        left: 0.75rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-light);
        transition: var(--transition);
        z-index: 3;
    }

    .login-form-control {
        width: 100%;
        padding: 0.75rem 0.75rem 0.75rem 0.75rem;
        border: 2px solid #e2e8f0;
        border-radius: 0.75rem;
        font-size: 0.875rem;
        transition: var(--transition);
        color: var(--text-color);
        background: var(--bg-color);
        position: relative;
        z-index: 10;
    }

    .login-form-control:focus {
        outline: none;
        border-color: var(--primary-color);
        background: white;
        box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    }

    .login-form-control:focus + i {
        color: var(--primary-color);
    }

    .login-toggle-password {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        color: var(--text-light);
        cursor: pointer;
        padding: 0.5rem;
        transition: var(--transition);
    }

    .login-toggle-password:hover {
        color: var(--primary-color);
    }

    .login-toggle-password i {
        font-size: 1rem;
        transition: var(--transition);
    }

    .login-form-options {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
        position: relative;
        z-index: 10;
    }

    .login-remember-me {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        cursor: pointer;
    }

    .login-remember-me input[type="checkbox"] {
        width: 1rem;
        height: 1rem;
        cursor: pointer;
    }

    .login-remember-me input[type="checkbox"]:checked {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }

    .login-forgot-password {
        color: var(--primary-color);
        text-decoration: none;
        font-size: 0.875rem;
        transition: var(--transition);
    }

    .login-forgot-password:hover {
        color: var(--primary-hover);
    }

    .login-submit {
        width: 100%;
        padding: 0.875rem;
        background: var(--primary-color);
        color: white;
        border: none;
        border-radius: 0.75rem;
        font-size: 1rem;
        font-weight: 500;
        cursor: pointer;
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        position: relative;
        overflow: hidden;
        z-index: 10;
    }

    .login-submit:hover {
        background: var(--primary-hover);
    }

    .login-submit:active {
        transform: translateY(0);
    }

    .login-submit::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent
        );
        transition: 0.5s;
        pointer-events: none;
    }

    .login-submit:hover::before {
        left: 100%;
    }

    .login-error-message {
        background: var(--error-bg);
        color: var(--error-text);
        padding: 1rem;
        border-radius: 0.75rem;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        position: relative;
        z-index: 2;
    }

    .login-footer {
        text-align: center;
        margin-top: 2rem;
        position: relative;
        z-index: 10;
    }

    .login-footer a {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 500;
        transition: var(--transition);
    }

    .login-footer a:hover {
        color: var(--primary-hover);
    }

    /* Animations */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes float {
        0% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-10px);
        }
        100% {
            transform: translateY(0px);
        }
    }

    @keyframes shake {
        0%, 100% { transform: translateX(0); }
        25% { transform: translateX(-5px); }
        75% { transform: translateX(5px); }
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        body {
            padding: 10px;
        }

        .login-wrapper {
            max-width: 100%;
            padding: 0 15px;
        }

        .login-container {
            padding: 1.5rem;
            border-radius: 1rem;
        }

        .login-logo {
            gap: 0.75rem;
        }

        .login-logo i {
            font-size: 2rem;
        }

        .login-logo h1 {
            font-size: 1.75rem;
        }

        .login-header p {
            font-size: 0.8rem;
        }

        .login-form-group {
            margin-bottom: 1.25rem;
        }

        .login-form-control {
            padding: 0.75rem 0.75rem 0.75rem 0.75rem;
            font-size: 0.875rem;
        }

        .login-input-wrapper i {
            left: 0.75rem;
            font-size: 1rem;
        }

        .login-toggle-password {
            right: 0.75rem;
            padding: 0.25rem;
        }

        .login-form-options {
            flex-direction: column;
            gap: 1rem;
            align-items: flex-start;
        }

        .login-remember-me {
            width: 100%;
        }

        .login-submit {
            padding: 0.75rem;
            font-size: 0.875rem;
        }

        .login-footer {
            margin-top: 1.5rem;
            font-size: 0.875rem;
        }
    }

    @media (max-width: 480px) {
        .login-container {
            padding: 1.25rem;
        }

        .login-logo i {
            font-size: 1.75rem;
        }

        .login-logo h1 {
            font-size: 1.5rem;
        }

        .login-form-control {
            padding: 0.625rem 0.875rem 0.625rem 2.5rem;
        }

        .login-input-wrapper i {
            left: 0.625rem;
            font-size: 0.875rem;
        }

        .login-toggle-password {
            right: 0.625rem;
        }
    } 