/* Estilo para el contenedor principal */
.container {
    max-width: 70%;
    margin: 0 auto; /* Centrar el contenedor horizontalmente */
    padding: 20px 20px 20px;
    background-color: #fff;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    margin-top: 20px;
    border-radius: 10px;
}

.global {
    display: flex; /*Convertimos al menú en flexbox*/
    justify-content: center; /*Con esto le indicamos que margine todos los items que se encuentra adentro hacia la derecha e izquierda*/
    align-items: center; /*con esto alineamos de manera vertical*/
}

/* Estilo general para el cuerpo de la página */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}

/* Encabezado */
h1 {
    text-align: center;
    color: #333;
}

/* Formulario */
form {
    margin-top: 20px;
}

label {
    width: 20%;
    display: flexbox;
    color: #555;
    margin: 10px 0px 5px 15px;
}

.adjuntos {
    width: 60%;
    display: flexbox;
    margin-bottom: 5px;
    color: #555;
    margin: 10px 0px 10px 15px;
}

input[type="text"] {
    width: 50%;
    padding: 0px 20px 0px 8px;
    margin: 15px 50px 10px 0px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: large;
    font-family: system-ui;
}

textarea {
    width: 90%;
    padding: 10px 20px 10px 8px;
    margin: 2px 10px 10px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: large;
    font-family: system-ui;
}

/*.lista_correo {
    width: 80%;
    padding: 10px;
    margin: 15px 10px 10px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}*/

input[type="file"] {
    width: 70%;
    margin: 10px 0px 10px 15px;
}

/* Botón de envío */
input[type="submit"] {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px 10px 10px 35px;
    width: 30%;
    font-size: large;
}

/* Modal */
#archivoNoPermitidoModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
}

#envioSatisfactorio {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
}

#ventanaEmergente {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
}

/* Estilos para el contenido del modal */
.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

/* Estilos para el botón de cerrar el modal */
.modal-content button {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
