/* submission.css - Estilos específicos para a página de envio */
body .contact-container .form-group label {
    font-size: 1.3rem !important;
    margin-bottom: 8px !important;
    font-weight: 100 !important;
}

/* Ajustes para o formulário */
.contact-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #5ca83e;
    border: 3px solid #82d461;
    border-top: 5px solid #52a535;
    border-bottom: 5px solid #2a641c;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-family: 'Minecrafter', sans-serif;
}

/* Ajuste das labels - maior e mais visível */
.form-group label {
    font-size: 1rem !important;
    /* Tamanho aumentado */
    color: #262423 !important;
    margin-bottom: 5px !important;
    /* Espaço reduzido abaixo da label */
    font-weight: bold;
    text-transform: none !important;
    /* Remove uppercase se estiver aplicado */
    letter-spacing: normal;
    display: block;
}

/* Redução do espaçamento entre grupos de formulário */
.form-group {
    margin-bottom: 15px !important;
    /* Espaço reduzido entre campos */
}

/* Ajuste dos inputs */
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 2px solid #262423;
    background-color: #f5f5f5;
    font-size: 0.9rem;
    margin-top: 5px !important;
    /* Espaço reduzido acima do input */
}

/* Botão de submit */
.submit-btn {
    background-color: #262423;
    color: #6cc349;
    border: 2px solid #6cc349;
    padding: 12px 25px;
    font-family: 'Minecrafter', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 15px;
    width: 100%;
}

.submit-btn:hover {
    background-color: #6cc349;
    color: #262423;
}

/* Títulos e cabeçalhos */
.contact-section h2 {
    color: #262423;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-section p {
    color: #262423;
    margin-bottom: 1.5rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .contact-container {
        padding: 1.5rem;
    }

    .contact-section {
        margin-top: 180px;
    }

    .form-group label {
        font-size: 0.9rem !important;
    }

    .submit-btn {
        padding: 10px 20px;
    }
}