/* Estilos generales */
body {
    margin: 0;
    font-family: 'Helvetica', sans-serif;
    font-weight: 800;
    font-size: 12px;
    
}

/* Titulo Tarjetero */
.cabecera-seccion {
    text-align: center;
    width: 80%;
    margin: 170px 0 50px 135px;
    height: 60px;
    color: #000000;
    border-bottom: 5px solid #49774a;
}

.titulo {
    font-size: 32px;
}

/* Estilo del formulario nuevo */
.formulario-nuevo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-bottom: 60px;
}

#contact-form {
    background-color: #d7f0d4;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#contact-form label {
    font-weight: bold;
    color: #333;
}

#contact-form input,
#contact-form textarea {
    padding: 10px 10px 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    width: 100%;
}

#contact-form input{
    width: 25%;
}

#contact-form button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #49774a;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#contact-form button:hover {
    background-color: #82e282
}