@charset "utf-8";
/* CSS Document */
*{
	margin:0;
	padding:0;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-ms-box-sizing:border-box;
	-o-box-sizing:border-box;
	box-sizing:border-box;
}
body{
	background:url(../imagenes/portada2f.jpg) no-repeat center center fixed;
	background-size: contain;
	background-attachment: fixed;
}
.container .form .form-header .form-title{
	font-weight: normal;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	text-align: center;
	padding: 14px 0px;
}
.container .form .form-header .form-title span{
	font-family: "abrilfatface","roboto","signika";
	color:rgba(22,18,180,1.00)
}
.container .form{
	background:rgba(254,254,254,0.85);
	width: 90%;
	max-width: 1000px;
	min-width: 350px;
	margin:auto;
	padding: 15px 35px;
	padding-bottom: 30px;
	border-radius: 5px;
	box-shadow: 5px 5px 5px red;
	margin-top:150px;
}
.container .form .form-label{
	display: block;
	color:rgba(38,33,245,1.00);
	font-size: 16px;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	position: relative;	
}
.container .form .form-input{
	background: rgba(0,0,0,0.7);
	border:none;
	outline:none;
	border-bottom: 2px solid rgba(239,71,15,0.92);
	width: 100%;
	padding: 12px;
	margin-bottom: 20px;
	border-radius: 5px;
	font-size: 14px;
	color:rgba(254,254,254,1.00);
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}
.container .form .btn-submit{
	width: 100%;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	outline: none;
	background: rgba(251,41,45,0.94);
	font-size: 16px;
	border: none;
	color:rgba(254,254,254,1.00);
	padding:15px 0px;
	cursor: pointer;
	transition: all 5s ease;
	border-radius: 5px;
}
.container .form .btn-submit:hover{
	background: rgba(162,2,23,1.00);
}