        /* user login Page Styles */
        body {
            background: #f2f4f7;
            font-family: "Poppins", sans-serif;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .login-card {
            width: 100%;
            max-width: 900px;
            background: white;
            border-radius: 16px;
            box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            display: flex;
            flex-direction: row;
        }

        .left-section {
            flex: 1;
            padding: 50px 40px;
        }

        .brand-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 25px;
            text-align: center;
        }

        .google-btn {
            border: 1px solid #d1d1d1;
            padding: 10px;
            width: 100%;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            cursor: pointer;
            background: #fff;
            transition: 0.2s;
        }

        .google-btn:hover {
            background: #f0f0f0;
        }

        .divider {
            text-align: center;
            margin: 20px 0;
            color: #888;
            font-size: 14px;
        }

        .form-control {
            border-radius: 8px;
            height: 44px;
            margin-bottom: 14px;
        }

        .login-btn {
            width: 100%;
            height: 45px;
            border-radius: 8px;
            background: black;
            color: white;
            border: none;
            font-size: 16px;
            margin-top: 10px;
        }

        .login-btn:hover {
            background: #333;
        }

        .right-section {
            flex: 1;
            background: #ddd;
            overflow: hidden;
        }

        .right-section img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .bottom-text {
            margin-top: 14px;
            font-size: 14px;
            text-align: center;
        }

        /* ------------- RESPONSIVE DESIGN ------------- */
        @media (max-width: 992px) {
            .login-card {
                flex-direction: column;
                max-width: 500px;
            }

            .right-section {
                height: 250px;
            }
        }

        @media (max-width: 576px) {
            .left-section {
                padding: 30px 20px;
            }

            .brand-title {
                font-size: 26px;
            }

            .right-section {
                height: 200px;
            }
        }

        .password-wrapper {
            position: relative;
        }

        .password-wrapper input {
            padding-right: 45px;
        }

        .toggle-password {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            color: #777;
            font-size: 18px;
        }