#responsive-form{
	max-width:1800px /*-- cambiar esto para conseguir el ancho de la forma deseada --*/;
	margin:0 auto;
  width:100%;
 background-color: #f5f5f5;
}


.form-row{
	width: 100%;	
}

.column-half, .column-full {
	float: left;
	position: relative;
	padding: 0.65rem;
	width:100%;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
		margin-bottom:15px;
}

.form-row2{
	width: 100%;
	height: 2px;
}

.column-full2 {
	float: left;
	position: relative;
	padding: 0.65rem;
	width:100%;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
		margin-bottom:1px;
}

.clearfix:after {
	content: "";
	display: table;
	clear: both;
}

/**---------------- Media query ----------------**/
@media only screen and (min-width: 48em) { 
	.column-half{
		width: 50%;
	}
}


div.wpcf7 .wpcf7-form-control {
  max-width: 99%;
}


.wpcf7 { 
 /* background-color: #f5f5f5;*/
	background-color: #E5E3E3;
	/* Color de fondo */
  border: 2px solid #eee;      /* borde para el formulario */
  padding:10px 10px 0px 10px;
  -webkit-border-radius: 4px;  /* bordes redondeados */
  -moz-border-radius: 8px; 
  border-radius: 8px;
	margin-bottom:1px;
	text-transform: uppercase;
}

.wpcf7 select {
  border: 1px solid #ddd;
  color: inherit;
  font-family: inherit;
  font-size: 1.6rem;
  line-height: 1.5;
  max-width: 100%;
  outline: 0;
  padding: .62em;
  vertical-align: baseline;
	background-color: white;
	height:45px;
	list-style:none;
}

.wpcf7-textarea {
  width: 100%;
}

entrada .wpcf7,
 .wpcf7 input,
 .wpcf7 textarea {
		text-transform: uppercase;
 }

.wpcf7 input[type="email"]
  {
		text-transform: lowercase;
 }

.tit-seccion {
	font-size:26px; 
	font-weight:900px; 
	letter-spacing: 6pt;
	text-decoration-line: underline;
  text-decoration-style: dotted;
	margin: auto;	 
}

.tit-centrado {
	font-size:26px; 
	font-weight:900px; 
	letter-spacing: 3pt;
	text-decoration-line: underline;
  /*text-decoration-style: dotted;*/
  text-align: center;
}

.btn-flotante {
font-size: 14px; /* Cambiar el tamaño de la tipografia */
text-transform: none; /* Texto en mayusculas */
font-weight: bold; /* Fuente en negrita o bold */
color: #ffffff; /* Color del texto */
border-radius: 5px; /* Borde del boton */
letter-spacing: 1px; /* Espacio entre letras */
background-color: #5e95c1; /* Color de fondo */
padding: 13px 20px; /* Relleno del boton */
position: fixed;
bottom: 40px;
right: 40px;
transition: all 300ms ease 0ms;
box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
z-index: 99;
}
.btn-flotante:hover {
background-color: #2c2fa5; /* Color de fondo al pasar el cursor */
box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.3);
transform: translateY(-7px);
}