.elementor-kit-6{--e-global-color-bcc21bb:#CF1151;--e-global-color-b2df008:#1A1A1A;--e-global-color-670f7ad:#020202;--e-global-color-b391e4c:#E5E4E4;--e-global-color-55d2050:#EAEAEA;--e-global-color-1437a9e:#F6F6F6;--e-global-color-d0cf772:#FFFFFF;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;--e-global-typography-db48d6c-font-family:"Roboto";--e-global-typography-db48d6c-font-size:50px;--e-global-typography-db48d6c-font-weight:600;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Contenedor de ambos elementos (formulario e instrucciones) */
.form-container {
    display: flex;
    flex-wrap: wrap; /* Permite que los elementos se ajusten si es necesario */
    justify-content: space-between;
    gap: 20px; /* Espacio entre el formulario y las instrucciones */
}

/* Ajustar la sección del formulario */
form {
    flex: 1 1 45%; /* Hace que el formulario ocupe el 45% del contenedor, ajustándose al espacio disponible */
    box-sizing: border-box;
    padding: 10px;
}

/* Ajustar la sección de instrucciones */
.upload-guide {
    flex: 1 1 45%; /* Hace que las instrucciones ocupen el 45% del contenedor */
    box-sizing: border-box;
    padding: 10px;
}

/* Ajustar tamaño de los campos de texto (input, select, textarea) */
textarea, input[type="text"], input[type="number"], select {
    width: 100%; /* Asegura que los campos ocupen todo el espacio disponible */
    padding: 10px;
    margin-bottom: 15px; /* Separar los campos entre sí */
    box-sizing: border-box;
}

/* Ajustar la altura de los campos textarea para que no se vean muy grandes */
textarea {
    height: 100px; /* Ajustar altura de los campos de texto (textarea) */
}

/* Estilos para el botón de envío */
button[type="submit"] {
    padding: 12px 20px; /* Aumentar tamaño del botón */
    background-color: #FF6600; /* Color atractivo para el botón */
    color: white;
    border: none;
    cursor: pointer; /* Cambiar el cursor al pasar por encima */
    margin-top: 10px; /* Separar el botón de los campos de texto */
}

/* Ajustar la apariencia del formulario y las instrucciones */
.upload-guide h4, .form-container h3 {
    margin-top: 0;
    font-size: 1.2em;
}

.upload-guide ul {
    padding-left: 20px;
}/* End custom CSS */