/* estilos.css */
body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-verde {
    width: 1120px;
    height: 120px;
    background-color: #dff0d8;
    text-align: center;
    font-weight: bold;
    padding: 0;
    box-sizing: border-box;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.header-verde h3 {
    color: #3c763c;
    text-align: center;
    margin: 0;
   
}

.form-group {
    margin-bottom: 15px;
    width: 1120px;
    box-sizing: border-box;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input[type="text"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    background-color: white;
}

/* Media query para pantallas más pequeñas */
@media (max-width: 1320px) {
    .header-verde {
        width: 100%;
        height: auto;
        padding: 15px;
    }
    .form-group {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Media query para pantallas móviles (ajustar la altura del header) */
@media (max-width: 768px) {
    .header-verde {
        height: 100px; /* Altura del header en dispositivos móviles */
    }
}