
@import url('https://fonts.googleapis.com/css?family=PT+Sans');

*{
	margin:0;
	padding:0;
	background-size: cover;
	background-position: center;
	font-family: 'PT Sans', sans-serif;
	font-size: 20px;
	box-sizing: border-box;

}

body{
	background: url(../fondos/img0.jpg);
	background-repeat:no-repeat;
	background-size: 100% 100%;
	background-attachment: fixed;
	font-family: 'PT Sans', sans-serif;
	font-size: 20px;
}

.login{	
margin-top: 100px;
margin-left: 80px;
background: #FFFFFF;
opacity: 0.84;
width: 290px;
height: 450px;
max-width:500px;
padding: 30px;
border: 1px solid rgba(0,0,0,0.1);
border-radius: 5px;
text-align: center;

}

.icono{
	margin-bottom: 2px;
	width: 250px;
	height: 100px;
	/*border-radius: 10%;*/

}

.error3{
	/*margin-top:-15px;
	margin-bottom: 5px;*/
	text-align: center;
	color:#ED2939;
	font-size: 16px;
	font-weight: bold;

}

h2{
	margin-top:-15px;
	margin-bottom: 5px;
	text-align: center;
	color:#50A1C4;
	font-size: 22px;
	font-weight: bold;
}


input{
	display: block;
	width: 100%;
	margin-bottom: 20px;
	border: 0px solid;


}

input[type="text"], input[type="password"] {
	margin-top: 10px;
	padding: 5px;
	height: 39px;
	font-size: 15px;
	font-weight: bold;
	background: #cccccc;
	/*background: url(../images/fondo_input.png);*/
	border: transparent;
	/*border-radius: 1px;*/
}



input[type="submit"]{
	background:#50A1C4;
	color:white;
	border-radius: 1px;
	border:0;
	cursor:pointer;
	padding: 10px;
	font-size: 20px;
	height: 40px;
	font-weight: bold;

}

input[type="submit"]:active{
	transform: scale(0.93);

}

a{
	text-decoration: none;
	color: white;
	background:#50A1C4;
	padding: 5px; 
	font-size: 14px;


}

@media(max-width:748px){
	.login{
		width: 50%;
	}
}

@media(max-width:480px){
	.login{
		width: 60%;
	}
}



