body{
	background-color: #ffffff;
	background-image: url('/backoffice/images/fondo-login.jpg');
	background-repeat: no-repeat;
	background-size: cover;
}

.transparencia{
	width: 100vw;
	height: 100vh;
	position: absolute;
	background: rgba(255,255,255,.4);
	top: 0;
	left: 0;
	z-index: -9999999;
}

.caja-login{
	margin-top: 20vh;
	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: 1024px){
	.caja-logo{
		
	}
}
/**** MOBILE ****/
@media handheld, only screen and (max-width: 768px){
	.caja-logo{
		
	}
}
.caja-logo img{
    max-width: 40vh;
	max-height: 240px;
}

.caja-datos{
    padding: 4px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
	width: 24vw;
	margin: 0 auto;
	/*animation: infinite resplandor 2s;*/
	background-color: rgba(0,0,0,.6);
	padding: 20px;
}
.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: 1024px){
	.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-color: #acb31d;
    color: #ffffff;
	cursor: pointer;
	font-weight: normal;
	text-transform: uppercase;
	font-size: 1.2em;
	letter-spacing: 0.2em;
}
.caja-datos input[type="button"]:hover{
    opacity: 0.8;
}

.usuario label, .clave label{
	position: relative;
	right: -12px;
	top: 2px;
	color: #acb31d;
	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 #acb31d;
		-webkit-box-shadow: 0px 0px 20px #acb31d;
		box-shadow: 0px 0px 20px #acb31d;
	}
	50%{
		-moz-box-shadow: 0px 0px 20px #acb31d;
		-webkit-box-shadow: 0px 0px 20px #acb31d;
		box-shadow: 0px 0px 20px #acb31d;
	}
}