 body,
        html {
            margin: 0;
            padding: 0;
            height: 100%;
            width: 100%;
        }

        .login-wrapper {
            width: 100%;
            height: 100%;
            display: flex;
            background: #fff;
            position: relative;
        }

        .login-slide {
            width: 60%;
            height: 100vh;
            /* or your desired height */
            position: relative;
            background-image:
                linear-gradient(to right, rgba(187, 55, 125, 0.7), rgba(251, 211, 233, 0.7)),
                url('https://img.freepik.com/premium-vector/professional-creative-restaurant-food-menu-template_1001077-1013.jpg?w=1380');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-blend-mode: multiply;
            display: flex;
            justify-content: center;
            align-items: center;
        }


        .carousel-inner {
            width: 100%;
            text-align: center;
        }

        .carousel-inner img {
            height: 500px;
            width: 500px;
            object-fit: contain;
            margin: auto;
            margin-bottom: 150px;
            animation: slideIn 0.5s ease-in-out;
        }

        @keyframes slideIn {
            from {
                transform: translateX(-50px);
                opacity: 0;
            }

            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .carousel,
        .carousel-item {
            width: 100%;
            height: auto;
        }

        .carousel-caption {
            background: rgba(0, 0, 0, 0.6);
            padding: 20px;
            border-radius: 10px;
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            text-align: center;
        }

        .carousel-caption h5 {
            color: #fff;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .carousel-caption p {
            color: #ddd;
            font-size: 16px;
        }

        .carousel-indicators button {
            background-color: #fff !important;
            opacity: 0.7;
        }

        .carousel-indicators .active {
            opacity: 1;
            background-color: #892ac0 !important;
        }

        .login-form {
            width: 40%;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: #f6e6fa;
            position: relative;
            overflow: hidden;
        }

        .login-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" opacity="0.1"><path d="M50 120c-10 0-18-8-18-18s8-18 18-18 18 8 18 18-8 18-18 18zm100 0c-10 0-18-8-18-18s8-18 18-18 18 8 18 18-8 18-18 18zm-50-60c-10 0-18-8-18-18s8-18 18-18 18 8 18 18-8 18-18 18z" fill="%23892ac0"/></svg>') repeat;
            opacity: 0.1;
            z-index: 0;
        }

        .login-form>* {
            position: relative;
            z-index: 1;
            animation: fadeIn 1s ease-in-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .login-form h4 {
            font-weight: 700;
            color: #005586;
            margin-bottom: 20px;
            text-align: center;
            text-transform: uppercase;
        }

        .form-control {
            border-radius: 5px;
            background: #fff;
            border: 1px solid #ccc;
            padding: 10px;
            font-size: 14px;
        }

        .form-control:focus {
            box-shadow: 0 0 5px #892ac062;
            border-color: #892ac0;
            outline: none;
        }

        .input-group button {
            border: 1px solid #ccc;
            border-left: none;
            background: #fff;
            border-radius: 0 5px 5px 0;
        }

        .btn-primary {
            background: #892ac0;
            border: none;
            border-radius: 5px;
            padding: 10px;
            font-weight: 600;
            text-transform: uppercase;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .btn-primary:hover {
            background: #500c77;
            transform: scale(1.05);
            box-shadow: 0 0 10px rgba(137, 42, 192, 0.5);
        }

        .forgot-password {
            display: block;
            text-align: right;
            font-size: 12px;
            color: #892ac0;
            margin-top: 10px;
            text-decoration: none;
        }

        .forgot-password:hover {
            text-decoration: underline;
        }

        .login-logo {
            display: block;
            margin: 0 auto;
            text-align: center;
            height: 100px;
            width: 100px;
            margin-bottom: 15px;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }

            100% {
                transform: scale(1);
            }
        }

        .submit-btn a button {
            width: 100%;
        }

        .login-curv {
            height: 100%;
        }

        @media (max-width: 768px) {
            .login-wrapper {
                flex-direction: column;
            }

            .login-slide,
            .login-form {
                width: 100%;
            }

            .carousel-inner img {
                height: 50vh;
            }

            .login-form {
                padding: 20px;
                height: 50vh;
            }
        }