form{
	border:0px solid red;
	background-color:;
	width:100%;
	float:left;
}

.campo{
	border:0px solid black;
	width: 100%;
	position: relative;
	font-size:14px;
	float:left;
	margin:19px 0px 0;
}

.tag{
	border:0px solid black;
	width:20%;	
	float:left;
	margin-top:5px;
}

input[type="text"], input[type="email"], input[type="password"], input[type="date"]{
	border:1px solid lightGrey;
	float:left;
	padding:12px;

	border-radius: 10px;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

select{
	margin-top:3px;
}

select, option{
	border:1px solid lightGrey;
	float:left;
}

input, select, option, textarea{
	width: 100%;
	font-family: 'Roboto', sans-serif;
	font-weight: bold;
	color: #0478af;
	font-size: 22px;
	text-align: center;
}

input::-webkit-input-placeholder{
	color: gray;
}

select{
	width:100%;
	font-size: 17px;
	font-weight: normal;
	padding: 5px;
}

textarea{
	border:1px solid lightGrey;
	height: 150px;
	font-family: arial;
	font-size: 14px;
	font-weight: normal;
	resize:none;
	float: left;
	padding: 5px;
}

#botonesEnviar{
	border:0px solid black;
	width: 100%;
	text-align: center;
	float:left;
	margin: 10px 0 0 0;
}

#btnEnviar, #btnBorrar{
	border: 0;
	background: #0478af;
	width:250px;
	color: #cbd530;
	padding: 12px 0px;
	cursor: pointer;
	margin: 20px 0 0 0;

	border-radius: 8px;
}

#btnEnviar:hover{
	background: #cbd530;
	color: white;
}

#btnEnviar:hover, #btnBorrar:hover{
	font-weight: bold;
}