body{
	background: #004d8d;
}

.caja-login{
	margin-top: 10vh;
	text-align: center;
}

.caja-logo{
	width: 100vw;
	margin: 0 auto;
	margin-bottom: 20px;
}
/**** TABLET ****/
@media handheld, only screen and (min-width: 769px) and (max-width: 1440px){
	.caja-logo{
		
	}
}
/**** MOBILE ****/
@media handheld, only screen and (max-width: 768px){
	.caja-logo{
		
	}
}
.caja-logo img{
    width: 40vh;
}

.caja-datos{
    padding: 4px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
	width: 24vw;
	margin: 0 auto;
	animation: infinite resplandor 2s;
}
.caja-datos-incorrecto{
	color: #ff6060;
	text-transform: uppercase;
    padding: 10px 0px;
    font-size: 1.4em;
    font-family: arial;
}
/**** TABLET ****/
@media handheld, only screen and (min-width: 769px) and (max-width: 1440px){
	.caja-datos{
		width: 35vw;
	}
}
/**** MOBILE ****/
@media handheld, only screen and (max-width: 768px){
	.caja-datos{
		width: 94vw;
	}
}
.caja-datos input[type="email"], .caja-datos input[type="password"]{
    width: 100%;
	padding: 14px 10px 14px 37px;
	margin-bottom: 7px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	border: 1px solid #b1b1b1;
	font-size: 1.1em;
}
.caja-datos input[type="button"]{
    width: 100%;
    padding: 12px 0px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border: none;
    background: #03a8db;
    color: #ffffff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
	cursor: pointer;
	font-weight: normal;
	text-transform: uppercase;
	font-size: 1.2em;
}
.caja-datos input[type="button"]:hover{
    background:#004d8d;
}

.usuario label, .clave label{
	position: relative;
	right: -12px;
	top: 2px;
	color: #004d8d;
	cursor: pointer;
	width: 0;
	font-size: 1.6em;
}

input[type="submit"], input[type="button"], button{
    -webkit-appearance: none;
    -webkit-border-radius: 0;
}

/**** RECURSOS ****/
.pintar{
	border: 1px solid red;
}
.sin-padding{
	padding: 0;
}

/**** PROCESOS ****/
@keyframes resplandor{
	0%,100%{
		-moz-box-shadow: 0px 0px 20px #03a8db;
		-webkit-box-shadow: 0px 0px 20px #03a8db;
		box-shadow: 0px 0px 20px #004d8d;
	}
	50%{
		-moz-box-shadow: 0px 0px 20px #FFFFFF;
		-webkit-box-shadow: 0px 0px 20px #FFFFFF;
		box-shadow: 0px 0px 20px #FFFFFF;
	}
}