/* Conteúdo do arquivo estilo.css */
/* ... outros estilos ... */

#meuForm {
    text-align: center;
}

.btn-primary {
    background-color: orange !important;
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    color: #fff !important;
    cursor: pointer;
    margin-top: 10px; /* Adicione margem superior para espaçamento */
}

.btn-primary:hover {
    background-color: #e8821d !important;
}
