/*********************EStilos del formulario *************************************/

.formbox{

	width:50%;
	max-width:500px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-30%);
	
}

.formbox .links{

	display: flex;
	justify-content: space-between;

}

.formbox .links a{

	color: #fff;
	text-decoration: none;
	display: block;
	line-height: 3em;

}

.formbox .links a:hover{
	text-decoration: underline;
}

.formbox .links .right{

	text-align: right;

}

form{
	background:rgba(200,200,200,0.8);
	padding:30px;
	
	border-radius: 8px;
}
input {
	padding:10px;
	width:80%;
	margin:10px;
	font-size:20px;
	border: 0 none;
	background: #dadada;
	border-radius: 8px;
}
input[type="submit"]
{
	background: #0056a3;
	border: 0;
	color:#fff;
	opacity:0.8;
	cursor:pointer;
	border-radius:8px;
	margin-bottom:0;
	width: auto;
	padding-left: 40px;
	padding-right: 40px;
	margin: 0 auto;
	text-transform: uppercase;
	font-weight: bold;
    font-size: 1em;
}
input[type="submit"]:hover
{	opacity:1;}
input[type="submit"]:active
{	transform:scale(0.95);}



@media (max-width:768px){
	
	.formbox { 
		width:75%;
	}

	.formbox .links {

		font-size: 0.7em;

	} 

	input, h2 {	font-size:16px;}

}
@media (max-width:480px){
	
	.formbox { 
		width:95%;
	}



	input, h2 {	font-size:14px;}
}