/* Adicione estes estilos em seu arquivo style.css */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}

.form-container {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 4px;
}

.form-container h2 {
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: .5rem;
    color: #666;
}

.form-group input[type=text],
.form-group input[type=date],
.form-group select {
    width: 100%;
    padding: .375rem .75rem;
    border: 1px solid #ccc;
    border-radius: .25rem;
}

.form-group button {
    background-color: #5cb85c;
    color: white;
    padding: .375rem .75rem;
    border: none;
    border-radius: .25rem;
    cursor: pointer;
}

.form-group button:hover {
    background-color: #4cae4c;
}

/* Você pode continuar a adicionar estilos conforme necessário */

