#formulario-contacto {
	max-width: 100%;
	table {
		colgroup {
			col {  }
			col:nth-child(2) { width: 390px; max-width: 100%; }
		}
		tbody {
			textarea { resize: none; }
			label { margin: 0px 2px; }
		}
	}
}

@media ( max-width: 650px ){
	#formulario-contacto {
		width: 100%;
		table {
			colgroup {
				col {  }
				col:nth-child(2) { width: 0px; }
			}
			width: 100%;
			tbody {
				td {
					display: block;
				}
			} 
		}
	}
}

@media ( max-width: 300px ){
	#formulario-contacto {
		table {
			.botones {
				grid-template-columns: auto; grid-gap: 20px; justify-content: center;
				> div { text-align: center; }
			}
		}
	}
}