/* FORMULARIO */



#formulario {
	background-color:transparent;
	margin: 0 auto;
	text-align: center;
	width: 95%;
}

#formulario2 {
	background-color:transparent;
	margin: auto;
	margin-top: 25px;
	text-align: center;
	width: 95%;
}

.cuadromensaje,
.cuadrotexto {
	color: #3098cc;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1em;
	margin: 10px auto;
	padding: 0.5em;
	width:100%;
	background-color: rgba(187,192,195,0.2);
	border-top: transparent solid 1px;
	border-left: transparent solid 1px;
	border-right:transparent solid 1px;
	border-bottom:transparent solid 1px;
	resize:none;
	float:center;
}

#formulario label {
	color: #22415a;
}



#botonenviar {
	color:#fff;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 18px;
	text-align: center;
	height:40px;
	width: 100%;
	vertical-align: middle;
	background-color:#a3c0d9;
	border-style:none;
	-ms-transition: all 0.4s ease-in;
	-moz-transition: all 0.4s ease-in;
	-o-transition: all 0.4s ease-in;
	-webkit-transition: all 0.4s ease-in;
	transition: all 0.4s ease-in;
}
#botonenviar:hover {
	background-color: #3098cc;
	color: #FFF;
	-ms-transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
	-webkit-transition: all 0.4s ease-out;
	transition: all 0.4s ease-out;
}