/*COTIZA*/
#cotiza {
  background: #eee;
	max-width: 1500px;
	margin: auto;
	text-align: center;
}
form {
  width: 95%;
  margin: auto;
  padding: 10px;
}
form p {
	font-size: 0.9em;
	padding: 5px 0;
	color: #666;
}
input, textarea {
  font-family: sans-serif;
  font-size: 1em;
  width: 100%;
  padding: 10px;
	margin: 5px 0;
	border: none;
	border-radius: 10px;
}
::placeholder {
	color: #999;
}
textarea {
  min-height: 100px;
  max-height: 200px;
  max-width: 100%;
}
#contacto-boton {
  width: 40%;
	max-width: 140px;
  margin: 15px auto;
  background: #0F4395;
  color: #fff;
  padding: 10px;
  text-align: center;
	cursor: pointer;
	border-radius: 20px;
}
.contacto-img {
	width: 300px;
	margin-bottom: 20px;
}



/*ESTILOS RESPONSIVE FORMULARIO*/
@media (min-width: 768px) {
.grupo-cotiza {
  max-width: 900px;
  margin: auto;
  display: flex;
  justify-content: center;
	align-items: center;
}
	.form-boton {
		display: flex;
		justify-content: flex-start;
	}
	#contacto-boton {
		margin: 10px 0;
	}
.columna-cotiza {
  width: 50%;
}
.form-grupo {
	display: flex;
	justify-content: space-between;
}
	.form-grupo input {
		width: 49%;
	}
}
