/*fuentes*/
@import url(http://fonts.googleapis.com/css?family=Bree+Serif);

/*******************
SELECTION STYLING
*******************/

::selection {
	color: #fff;
	background: #f676b2; /* Safari */
}
::-moz-selection {
	color: #fff;
	background: #f676b2; /* Firefox */
}

/*******************
BODY STYLING
*******************/

* {
	margin: 0;
	padding: 0;
	border: 0;
}

html { /*fondo full screen*/
  background: url(../images/fondos/laptop_estudiante.jpg) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}


body {
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
	font-weight:300;
	text-align: left;
	text-decoration: none; /*sin links subrayados*/
}


#wrapper { /*envoltura*/
	width: auto;
	height: auto;
	float: left;
	position: absolute;
	left: 11%;
	top: 10%;
}


/*******************
LOGIN FORM
*******************/

.login-form { /*todo el form del login*/
	width: 300px;
	margin: 0 auto;
	position: relative;
	z-index:5;
	background: #f3f3f3;
	opacity: 1;
	border: 1px solid #ccc;
	border-radius: 7px;
}

.login-form .header { /*la cabecera del login dentro del form*/
	padding: 20px 10px 10px 30px;
}

.login-form .header h1 { /*el texto de bienvenido*/
	font-family: helvetica, arial, sans-serif;
	font-weight: bold;
	font-size: xx-large;
	line-height:34px;
	color: #414848;
	margin-bottom: 10px;
}

span.txt1 { /*el texto abajo de bienvenido*/
	font-size: smaller;
	color: #8f8f8f;
}

/*******************
CONTENT
*******************/

.login-form .content {
	padding: 0 30px 25px 30px;
}

/* Input field */
.login-form .content .input { /*los campos*/
	width: 188px;
	padding: 15px 25px;
	font-weight: 400;
	font-size: 16px;
	color: #959595;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 5px;
}

/* el segundo campo paswword*/
.login-form .content .pass, .login-form .content .pass-icon {
	margin-top: 25px;
}

.login-form .content .input:hover {
	/*efecto cuando pasa el mouse sobre los campos*/
	background: #dfe9ec;
	color: #414848;
}

.login-form .content .input:focus {
	/*efecto cuando el campo recibe el enfoque*/
	background: #dfe9ec;
	color: #414848;
}


/*******************
FOOTER
*******************/

.login-form .footer {
	padding: 20px 20px 20px 20px;
	overflow: auto;
	
	background: #dddddd;
	border-top: 1px solid #fff;
	
	box-shadow: inset 0 1px 0 rgba(0,0,0,0.15);
	-moz-box-shadow: inset 0 1px 0 rgba(0,0,0,0.15);
	-webkit-box-shadow: inset 0 1px 0 rgba(0,0,0,0.15);
}

/* boton de login */
.login-form .footer .button {
	float:right;
	padding: 11px 25px;
	
	font-weight: 300;
	font-size: 18px;
	color: #fff;
	text-shadow: 2px 2px 0 rgba(0,0,0,0.25);
	
	background: #0078b2;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	
	box-shadow: inset 0 0 2px rgba(256,256,256,0.75);
	-moz-box-shadow: inset 0 0 2px rgba(256,256,256,0.75);
	-webkit-box-shadow: inset 0 0 2px rgba(256,256,256,0.75);
}

.login-form .footer .button:hover {
	/* boton de login cuando pasa el mouse encima*/
	background: #3f9db8;
	/*border: 1px solid rgba(256,256,256,0.75);*/
	
	box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
	-moz-box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
	-webkit-box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
}

.login-form .footer .button:focus {
	/* boton de login cuando recibe el enfoque*/
	position: relative;
	bottom: -1px;
	
	background: #56c2e1;
	
	box-shadow: inset 0 1px 6px rgba(256,256,256,0.75);
	-moz-box-shadow: inset 0 1px 6px rgba(256,256,256,0.75);
	-webkit-box-shadow: inset 0 1px 6px rgba(256,256,256,0.75);
}