<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Simple Click Captcha</title>
    <style>
        body {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            font-family: Arial, sans-serif;
            background-color: #f3f4f6;
        }
        .captcha-container {
            text-align: center;
            border: 1px solid #ccc;
            padding: 20px;
            border-radius: 8px;
            background: white;
        }
        button {
            padding: 10px 20px;
            font-size: 16px;
            border: none;
            border-radius: 5px;
            background-color: #007bff;
            color: white;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        button:hover {
            background-color: #0056b3;
        }
    </style>
</head>
<body>

<div class="captcha-container">
    <h2>Click to Verify You Are Human</h2>
    <button id="captchaButton">Click Me!</button>
    <p id="message"></p>
</div>

<script>
    document.getElementById('captchaButton').onclick = function() {
        document.getElementById('message').textContent = "Verification Successful!";
        setTimeout(function() {
            window.location.href = "https://google.com"; // Replace with your desired link
        }, 2000);
    };
</script>

</body>
</html>