/* style.css */

/* Ajustes gerais da página */
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

/* Cabeçalho */
header {
    background-color: #0d6efd;
    color: white;
    padding: 40px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
}

/* Container do formulário */
.form-container {
    background-color: white;
    padding: 30px;
    margin-top: -50px;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

/* Labels alinhados à esquerda */
.form-label {
    text-align: left;
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

/* Botão de envio */
.btn-enviar {
    background-color: #0d6efd;
    border: none;
    padding: 10px 20px;
    font-size: 1.1rem;
    border-radius: 5px;
    color: white;
    transition: background-color 0.3s ease;
}

.btn-enviar:hover {
    background-color: #0b5ed7;
}

/* Modal */
.modal-header {
    background-color: #0d6efd;
    color: white;
}

.modal-footer .btn-primary {
    background-color: #0d6efd;
    border: none;
}
