 /* CSS Variables */
        :root {
            --primary: #2563eb;
            --primary-light: #e0e7ff;
            --secondary: #059669;
            --danger: #dc2626;
            --warning: #d97706;
            --success: #059669;
            --background: #f8fafc;
            --surface: #ffffff;
            --text: #1e293b;
            --text-light: #64748b;
            --radius: 12px;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
        }

        /* Reset & Base Styles */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Inter', system-ui, sans-serif;
            background-color: var(--background);
            color: var(--text);
            line-height: 1.5;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 1rem;
        }

        /* Login Container */
        .login-container {
            width: 100%;
            max-width: 400px;
        }

        /* Login Card */
        .login-card {
            background: var(--surface);
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
            padding: 2.5rem;
            width: 100%;
            text-align: center;
        }

        /* Login Logo */
        .login-logo {
            margin-bottom: 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .logo-image {
            height: 80px;
            width: auto;
            object-fit: contain;
            margin-bottom: 0.5rem;
        }

        .login-logo h1 {
            margin-top: 0.5rem;
            font-size: 1.5rem;
            color: var(--primary);
        }

        /* Login Title */
        .login-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        /* Form Styles */
        .form-group {
            margin-bottom: 1.5rem;
            text-align: left;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #e2e8f0;
            border-radius: var(--radius);
            font-family: inherit;
            transition: border-color 0.2s ease;
        }

        .form-control:focus {
            outline: noe;
            border-color: var(--primary);
        }

        /* Button Styles */
        .btn {
            padding: 0.75rem;
            border-radius: var(--radius);
            border: none;
            cursor: pointer;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            transition: all 0.2s ease;
            width: 100%;
        }

        .btn-primary {
            background-color: var(--primary);
            color: white;
        }

        .btn-primary:hover {
            background-color: #1d4ed8;
        }

        /* Footer Links */
        .login-footer {
            margin-top: 1.5rem;
            font-size: 0.875rem;
        }

        .login-footer a {
            color: var(--primary);
            text-decoration: none;
        }

        .login-footer a:hover {
            text-decoration: underline;
        }

        /* Responsive Adjustments */
        @media (max-width: 480px) {
            .login-card {
                padding: 1.5rem;
            }
            
            .logo-image {
                height: 60px;
            }
        }
        .password-wrapper {
            position: relative;
             display: flex;
             align-items: center;
        }

    .password-wrapper input {
            flex: 1;
             width: 100%;
             padding-right: 2.5rem;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            padding: 10px 12px;
            font-size: 14px;
        }   

    .toggle-password {
            position: absolute;
            right: 10px;
            color: #64748b;
            cursor: pointer;
            font-size: 1.1rem;
            transition: color 0.2s ease;
        }

    .toggle-password:hover {
            color: #1e293b;
        }
