body{
	background: #f18500 url(../images/fondo.jpg);
}

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

.caja-logo{
    /*background-color: #FFFFFF;*/
	/*-webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;*/
	width: 24vw;
	margin: 0 auto;
	margin-bottom: 20px;
}
/**** TABLET ****/
@media handheld, only screen and (min-width: 769px) and (max-width: 1440px){
	.caja-logo{
		width: 35vw;
	}
}
/**** MOBILE ****/
@media handheld, only screen and (max-width: 768px){
	.caja-logo{
		width: 90vw;
	}
}
.caja-logo img{
    max-height: 10vh;
	margin: 10px 0px 4px 0px;
}

.caja-datos{
    background-color:#FFFFFF;
    padding: 15px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
	width: 24vw;
	margin: 0 auto;
	animation: infinite resplandor 2s;
}
/**** 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: 90vw;
	}
}
.caja-datos input[type="email"], .caja-datos input[type="password"]{
    width: 100%;
    padding: 10px 10px 10px 30px;
    margin-bottom: 15px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid #b1b1b1;
}
.caja-datos input[type="button"]{
    width: 100%;
    padding: 10px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: none;
    background: #fab500;
    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: bold;
	text-transform: uppercase;
}
.caja-datos input[type="button"]:hover{
    background:#e84a0a;
}

.usuario label, .clave label{
    position: relative;
    right: -10px;
    top: 2px;
    color: #7B7B7B;
    cursor: pointer;
	width: 0;
    font-size: 1.1em;
}

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;
	}
}