body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1000px;
    width: 90%; /* Ajusta el ancho del formulario según tus necesidades */
    margin: 10px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    color: #333;
}

select {
    font-size: 24px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 24px;
}

input, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 16px;
    box-sizing: border-box;
    font-size: 24px;
}

input[type="submit"] {
    background-color: #4caf50;
    color: #fff;
    cursor: pointer;
    font-size: 24px;
}

input[type="submit"]:hover {
    background-color: #45a049;
    font-size: 24px;
}

/* Estilos específicos para tamaños de pantalla más pequeños (responsive) */
@media screen and (max-width: 800px) {
    form {
        width: 90%;
    }
}
