#formulario {
				height: 80%;
				width: 80%;
				margin-left: 10%;
			}
			
			body {
				height: 100%;
				width: 100%;
				margin: 0px;
				padding: 0px;
				color: #3F5767;
				background-color: #000000;
			}
			
			html {
				height: 100%;
				width: 100%;
			}
			
			h1 {
				text-align: center;
				font-family: Helvetica, Arial, sans-serif;
				color: blue;
			}
			
			.panel-footer { 
			  position:absolute;
			  text-align:center;
			  left:40%;
			  bottom:1%;
			}
			form{
	width:500px;
	padding:16px;
	border-radius:10px;
	margin:auto;
	background-color:#bbb;

}

form label{
	width:130px;
	font-weight:bold;
	display:inline-block;
	
}

form input[type="text"],
form input[type="email"],
form input[type="number"]{
	width:180px;
	padding:3px 10px;
	border:1px solid #f6f6f6;
	border-radius:3px;
	background-color:#f6f6f6;
	margin:8px 0;
	display:inline-block;
}

form input[type="radio"]{
	font-size:50%;
	text-align:left;
}

form input[type="button"]{
	width:100%;
	padding:8px 16px;
	margin-top:32px;
	border:1px solid #000;
	border-radius:5px;
	display:block;
	color:#6991AC;
	background-color:#000;
} 

form input[type="reset"]:hover{
	cursor:pointer;
}

form input[type="reset"]{
	width:100%;
	padding:8px 16px;
	margin-top:32px;
	border:1px solid #000;
	border-radius:5px;
	display:block;
	color:#6991AC;
	background-color:#000;
} 

form input[type="button"]:hover{
	cursor:pointer;
}