/* Styles definition here */
/* 1. FUENTE GLOBAL: Limpia, sin estirar y legible */
#fbuilder, #fbuilder * {
    font-family: Arial, sans-serif !important;
    letter-spacing: normal !important;
    word-spacing: normal !important;
}

/* 2. TEXTO DE INSTRUCCIONES: Justificado y en CURSIVA */
#fbuilder .instructions, 
#fbuilder .dfield.cp_cpcff_p_instructions span,
#fbuilder div[id^="field_"] > div > span {
    text-align: justify !important; 
    font-size: 16px !important;    
    line-height: 1.7 !important;
    color: #333333 !important;
    font-style: italic !important; 
    display: block !important;
    margin-bottom: 20px !important; /* Más espacio bajo las instrucciones */
}

/* 3. CAMPOS DE ENTRADA (Menú y Correo): Unificados y grandes */
#fbuilder select, 
#fbuilder .dfield select,
#fbuilder select.ff_elem,
#fbuilder input[type="text"], 
#fbuilder input[type="email"],
#fbuilder .ff_elem input {
    font-size: 16px !important; 
    padding: 12px !important;
    height: auto !important;
    color: #164e60 !important; 
    border: 1px solid #164e60 !important;
    border-radius: 4px !important;
	
	/* ELIMINAR FONDO GRIS Y ESTILOS NATIVOS */
    background-color: #ffffff !important; /* Fondo blanco puro */
    appearance: none !important;         /* Quita el estilo gris de fábrica */
    -webkit-appearance: none !important;
    -moz-appearance: none !important;	
	
	/* UNIFICACIÓN DE ANCHURA */
    width: 100% !important;
    max-width: 400px !important; /* Ajusta este número hasta que te guste el tamaño */
    display: block !important;	
	box-sizing: border-box !important;
}
/* 4. BOTONERA: Tamaño 16px con MARGEN para que respire */
#fbuilder .pbSubmit, 
#fbuilder input[type="button"].pbSubmit {
    background: #164e60 !important; 
    background-color: #164e60 !important;
    color: #ffffff !important;
    font-size: 16px !important;    
    font-weight: 400 !important;
    text-transform: none !important; 
    padding: 15px 20px !important; 
    border-radius: 4px !important;
    border: none !important;
    cursor: pointer !important;
    transition: background 0.3s ease !important;
    height: auto !important;
    width: auto !important;
    margin-top: 25px !important; /* Espacio extra sobre el botón */
}

#fbuilder .pbSubmit:hover {
    background: #0d2f3a !important; 
}

/* 5. ETIQUETAS DE LOS CAMPOS (Labels): Con margen de separación */
#fbuilder label, 
#fbuilder .field > label {
    font-size: 16px !important;
    color: #164e60 !important;
    font-weight: 600 !important;
    margin-bottom: 12px !important;
    margin-top: 20px !important; /* Espacio para que el Correo no pegue con el texto superior */
}