/* Estilos para a seção do formulário */
.form-section {
    padding: 40px 40px;
    background-color: #353535;
    margin-top: 40px;
}

/* Container do formulário */
.form-form {
    /* background-color: white; */
    padding: 30px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

/* Estilos para os campos do formulário */
.form-control {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    background-color: #f9f9f9;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: #d8ae5d;
    box-shadow: 0 0 5px rgba(216, 174, 93, 0.5);
    background-color: white;
}

/* Estilo para o select */
.form-control select {
    height: 45px;
}

/* Botão de enviar */
.btn-enviar {
    padding: 12px 30px;
    background-color: #0e0339;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.btn-enviar:hover {
    background-color: #d8ae5d;
    color: #0e0339;
}

/* Responsividade */
@media (max-width: 768px) {
    .form-section {
        padding: 20px 0;
    }
    
    .form-form {
        padding: 20px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
}
