    <style>
        body {
            font-family: Arial, sans-serif;
            background-color: #f9f9f9;
            margin: 0;
            padding: 0;
        }
        .container {
            max-width: 600px;
            margin: 50px auto;
            background-color: #fff;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        h1 {
            text-align: center;
            color: #333;
        }
        form {
            text-align: center;
            border: none; /* Removendo a borda do formulário */
        }
        input[type="text"] {
            width: calc(100% - 20px);
            padding: 10px;
            margin: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box;
        }
        input[type="submit"],
        .btn-menu {
            width: 49%; /* Define a largura igual para ambos os botões */
            padding: 14px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            transition: background-color 0.3s;
            display: inline-block; /* Para ocupar toda a largura disponível */
            margin-top: 10px; /* Espaçamento entre os botões */
        }
        input[type="submit"] {
            background-color: #000;
            color: white;
        }
        input[type="submit"]:hover { 
            background-color: #000;
        }
        .btn-menu {
            background-color: #000;
            color: white;
        }
        .btn-menu:hover { 
            background-color: #000;
        }
        p {
            text-align: center;
            color: #666;
            margin-top: 20px;
            /* Estilizando o texto em negrito, vermelho, tamanho 24 e em Verdana */
            font-size: 18px;
            font-family: Verdana, sans-serif;
            color: red;
            font-weight: bold;
        }
    </style>