/* Formulario*/

section#formulario{
	float: left;
	top: 50%;
	left: 50%;
	margin-left: 40%;
	margin-top: 5%;
	width: 35%;
	height: 100%;
	min-height: 100px;
	background-color: black;
	overflow: hidden;
}

p#titulo{
	font-size: 1.6em;
	text-align: center;
	margin-top: 20px;
}

input[type="text"], input[type="password"], input[type="mail"], textarea{
	float: left;
	width: 400px;
	height: 35px;
	margin-top: 10px;
	padding-left: 10px;
	font-size: 1.1em;
	outline: none;
	border: 0px;
	background-color: #dcdcdc;
	border-radius: 5px;
}
textarea{
	max-width: 400px;
	min-width: 400px;
	min-height: 70px;
	padding-top: 10px;
}

input[type="submit"]{
	margin-top: 20px;
	margin-bottom: 20px;
	width: 410px;
	height: 40px;
	outline: none;
	border: 0px;
	background-color: rgb(255, 249, 141);
	color: black;
	font-size: 1.2em;
	border-radius: 5px;
}

div#negro{
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .5);
}

div#dialogo{
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -150px;
	margin-top:  -150px;
	width: 300px;
	height: 100px;
	background-color: white;
	border-radius: 5px;
	border-radius: 1px solid #c3c3c3;
}

div#dialogo p{
	padding: 10px;
	padding-top: 20px;
	font-size: 1.3em;
	text-align: center;
	color: #454545;
}