
/* form[name=formularioacceso] {
	table.formulario {
		colgroup {
			col:nth-child(2) {
				width: 230px;
			}
		}
	}
}

@media ( max-width: 400px ){
	form[name=formularioacceso] {
		width: 100%;
		table.formulario {
			width: 100%;
			colgroup {
				col:nth-child(2) { width: auto; }
			}
			tbody {
				td { display: block; }
			}
		}
	}
} */

#soporte { display: grid; grid-template-columns: auto auto; justify-content: space-between;
	> div { 	padding: 10px; }
}

@media ( max-width: 600px ){
	#soporte { 	grid-template-columns: auto; justify-content: space-between; }
}