 @keyframes appear {
            from {
                opacity: 0;
                scale: 0;
            }

            to {
                opacity: 1;
                scale: 1;
            }
        }

        .block {
            animation: appear 1.5s ease-out;
            animation-timeline: view();
            animation-range: entry 0% cover 15%;
        }

        .container3 {
            display: flex;
            /* min-height: 100vh; */
        }

        .left,
        .right {
            flex: 1;
            padding: 80px;
            padding-top: 16px;
            padding-bottom: 60px;
        }

        .left {
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .left h1 {
            font-size: 3rem;
            line-height: 1.2;
            font-family: "Poppins", sans-serif;
            background: -webkit-linear-gradient(80deg, #3DCBD6, #4690C5, #92C186);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: bold;
        }

        .right {
            background: #fff;
        }

        .right h2 {
            font-size: 1.8rem;
            margin-bottom: 30px;
            font-family: "Poppins", sans-serif;
        }

        form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            font-family: "Poppins", sans-serif;
        }

        .input-group {
            position: relative;
        }

        .input-group input,
        .input-group textarea {
            width: 100%;
            padding: 15px 0px 15px 5px;
            border: none;
            border-bottom: 1px solid #ccc;
            font-size: 1rem;
            resize: none;
            font-family: "Poppins", sans-serif;
        }

        button {
            background: #111;
            color: #fff;
            padding: 15px;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            margin-top: 20px;
            font-family: "Poppins", sans-serif;
        }

        button:hover {
            background: #333;
        }