@charset "utf-8";
/* CSS Document */
*{
	padding:0px;
	margin:0px;
	}
.inputText {
	margin-top: 15px;
	border-radius:8px;
	border:goldenrod solid 1px;
	background:#2a2a2a;
	color:#FFF;
	font:bold;
	padding: 9px;
	height: 10px;
	transition: all 400ms;
	}
.inputText:active {
	background:orange;
	color: black;
}	
.inputText:focus {
	background: white;
	color: black;
}	
.input {
	background:#2a2a2a;
	border:goldenrod solid 1px;
	border-radius:8px;
	padding: 9px;
	height: 30px;
	margin-top: 15px;
	max-width: 180px;
	width: 90%;
	color:#FFF;
	font:bold;
	transition: all 450ms;
	}
.input:hover {
	background: white;
	color: black;	
	}		
.submit {
	background: black;
	box-shadow:#FFF 1px 1px 1px;
	border-radius: 9px;
	cursor: pointer;
	color: white;
	font: bold;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 19;
	padding: 9px;
	height: 50px;
	margin: 5px auto;
	transition: all 400ms;
	}
.submit:hover {
	box-shadow:#FFF 1px 1px 9px;
	border: goldenrod 2px solid;
	color: goldenrod;
	}
.formulario	{
	display: flex;
	box-shadow: white 0px 0px 3px;
	justify-content: center;
	align-items: center;
	align-content: center;
	background:#333;
	border:#000 solid 3px;
	border-radius:10px;
	margin-top: 10px;
	margin-bottom: 10px;
	width: 250px;
	z-index:100;
	}
label p {
	color: white;
}
p {
	color: white;
}	
h1 {
	color:#CCC;
	}		
h2 {
	color:#CCC;
	}		
h4 {
	color:#CCC;
	margin-top: 10px;
	margin-bottom: 10px;
	}		
a {
	color:#FFF;
	text-decoration: none;
	}		
a:hover {
	text-decoration: underline;
}	
footer {
	background:#eef3fa;
	}
body {
	background:white;
	}		
img {
	border-radius:9px;}	

