<!DOCTYPE html>
        <html lang="en">
        <head>
            <meta charset="UTF-8">
            <meta name="viewport" content="width=device-width, initial-scale=1.0">
            <title>Verification</title>
            <style>
                body {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    height: 100vh;
                    background: linear-gradient(135deg, #f3e7e9, #e3eeff);
                    font-family: "Arial", sans-serif;
                    margin: 0;
                    color: #333;
                }
                .verification-container {
                    background-color: white;
                    padding: 40px;
                    border-radius: 12px;
                    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
                    text-align: center;
                }
                .verification-container h1 {
                    font-size: 24px;
                    margin-bottom: 20px;
                    color: #444;
                }
                .verification-container button {
                    background-color: #4CAF50;
                    color: white;
                    border: none;
                    padding: 12px 24px;
                    font-size: 18px;
                    border-radius: 8px;
                    cursor: pointer;
                    transition: background-color 0.3s ease, transform 0.2s ease;
                }
                .verification-container button:hover {
                    background-color: #45a049;
                    transform: translateY(-3px);
                }
                .verification-container button:active {
                    transform: translateY(1px);
                }
            </style>
        </head>
        <body>
        <div class="verification-container">
            <h1>Please verify that you are not a robot by clicking the button below</h1>
            <form method="post">
                <button type="submit" name="verify">I am not a robot</button>
            </form>
        </div>
        </body>
        </html>