        .container {
            width: 50%;
            margin: 50px auto;
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px #fff;
        }
        
        form {
            display: flex;
            flex-direction: column;
            max-width: 400px;
            margin: 0 auto;
        }
        
        p {
            text-align: center;
        }
        
        .mensagem-sucesso {
            margin-top: 20px;
            /* Espaço entre o formulário e a mensagem */
            text-align: center;
            /* Alinhamento centralizado */
        }
        
        .sucesso {
            color: green;
            /* Cor verde para a mensagem de sucesso */
        }
        
        .erro {
            color: red;
            /* Cor vermelha para a mensagem de erro */
        }
        
        input[type="text"],
        input[type="email"],
        input[type="password"],
        input[type="tel"] {
            margin-bottom: 15px;
            padding: 10px;
            border-radius: 5px;
            border: 1px solid #ccc;
            font-size: 16px;
        }
        
        input[type="submit"] {
            background-color: #4CAF50;
            color: white;
            padding: 10px 15px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
        }
        
        input[type="submit"]:hover {
            background-color: #45a049;
        }
        /* Estilizando mensagens de erro */
        
        .error-message {
            color: red;
            margin-bottom: 10px;
        }
        
        .logo {
            margin: 20px;
            font-size: 3rem;
            font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
            color: #000;
            text-decoration: none;
            -webkit-text-stroke-width: 1px;
            -webkit-text-stroke-color: gray;
            text-align: center;
        }
        
        .botao2 {
            background-color: #4169E1;
            color: white;
            padding: 10px 15px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            margin-right: 20px;
        }
        /* Estilização ao passar o mouse sobre o botão */
        
        .botao2:hover {
            background-color: #45a049;
            /* Altera a cor de fundo ao passar o mouse */
        }
        
        .btn-container {
            text-align: center;
        }
        
        .btn-container a {
            margin-top: 15px;
            display: block;
        }
        
        .h1-text {
            text-align: center;
            color: #fff;
            justify-content: center;
        }