/* /css/login.css */

        * {
            box-sizing: border-box;
        }
        body {
            margin: 0;
            background-color: #f7f9fc;
            font-family: 'Inter', sans-serif;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100vh;
        }

        .card {
            background-color: #fff;
            padding: 2.5rem 2rem;
            border-radius: 16px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
            width: 100%;
            max-width: 400px;
            text-align: center;
        }

        .card img {
            width: 40px;
            margin-bottom: 1rem;
        }

        .card h2 {
            font-size: 1rem;
            margin-bottom: 2rem;
            color: #1f2937;
        }

        .form-group {
            position: relative;
            margin-bottom: 1.5rem;
            text-align: left;
        }

        .form-group input {
            width: 100%;
            padding: 0.75rem 1rem 0.75rem 2.5rem;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            font-size: 0.95rem;
            background-color: #f9fafb;
            color: #111827;
        }

        .form-group input:focus {
            border-color: #3b82f6;
            outline: none;
        }

        .form-group .icon {
            position: absolute;
            left: 0.8rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1rem;
            color: #9ca3af;
        }

        .toggle-password {
            position: absolute;
            right: 0.8rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 0.85rem;
            background: none;
            border: none;
            color: #6b7280;
            cursor: pointer;
        }

        .forgot-link {
            display: block;
            font-size: 0.85rem;
            margin-top: -1rem;
            margin-bottom: 1.5rem;
            text-align: right;
            color: #6b7280;
            text-decoration: none;
        }

        .forgot-link:hover {
            text-decoration: underline;
        }

        .login-btn {
            background-color: #111827;
            color: white;
            border: none;
            width: 100%;
            padding: 0.75rem;
            font-size: 1rem;
            border-radius: 8px;
            cursor: pointer;
        }

        .login-btn:hover {
            background-color: #1f2937;
        }

/* Remaining styles... (copy from previous CSS block) */
