@font-face {
    font-family: subsecc;
    src: url(Fuentes/CronusRound.otf);
	color:#008080
}
*{
	margin:0px;
	padding:0px;
	text-align:center;
	font-family: subsecc,Arial, Helvetica, sans-serif;
}
body{
	display:-webkit-flex;
	display:-ms-flexbox;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	background:url('images/fondoLoginAlumnos2-comp.jpg');
	background-position: center center;
	width: 1024px;
	margin: auto;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;

}
#agrupar{
	display:-webkit-flex;
	display:-ms-flexbox;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
}
#contenedor_login{
	display:-webkit-flex;
	display:-ms-flexbox;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	width:650px;
	height:500px;
	border-radius:10px;
	transition:background 0.7s;
	background:rgba(150,150,150,0.5);
}
#contenedor_login:hover{
	background:rgba(50,50,50,0.5);	
}
#login{
	display:-webkit-flex;
	display:-ms-flexbox;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	width:300px;
	height:300px;
	background:#FFF;
	border-radius:20px;
	padding:20px;
	color:#D0F0FF
	box-shadow: 0px 0px 10px 6px rgba(0,0,0,0.7);
	background:#069;
	color:#fff;
	
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.5);
	box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.5);
}

#login:hover{
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.5);
	box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.5);
}

input[type=text],input[type=password]{
	height: 30px;
	width:90%;
	border-radius: 5px;
	font-size:18px;
	font-weight:700;
	text-transform: uppercase;
	-webkit-transition: all 0.7s ease-out;
	-moz-transition: all 0.7s ease-out;
	-o-transition: all 0.7s ease-out;
	transition: all 0.7s ease-out;
	border:1px solid #CCC;
	margin-top:5px;
}
#errores{
	font-size:30px;	
}
#ingresar{
	width:100px;
	margin-top:8px;
	color:#069;
}
input[type=text]:hover,input[type=password]:hover{
	box-shadow: 0px 0px 15px 0px rgba(62,130,214,1);
}
input[type=text]:focus,input[type=password]:hover{
	box-shadow: 0px 0px 29px 0px rgba(62,130,214,1);
	outline-width:inherit;
}
