/*
Al cuerpo de la
pagina se aplica el tamño de fuete
 */
body{
	font-size: 12px;
}
/*pantalla completa-para img fondo*/
.pantalla-login{
    position: fixed;
    width: 100%;
    height: 100%;
    background: url(../img/logo/bridgestone-portada.jpg) no-repeat center center;
    background-size: cover;
}
.velo-deg{
    content: "";
     position: fixed;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    background: #2d8fac;
    background: linear-gradient(-45deg,#b01757, #2d8fac, #1b5567);
	background-size: 400% 400%;
	-webkit-animation: gradient 15s ease infinite;
	        animation: gradient 15s ease infinite;
    z-index: 0;
}
.row-login {
	margin-left: 14em;
	width: fit-content;
}
@-webkit-keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
#contenedor_login2{
    z-index: 99;
}
/**
 * se aplica el ancho, margen centrado
 * borde de un pixel con redondeao, y rellenado
 * a la izquierda y derecha
 */
#Contenedor{
	width: 400px;
	margin: 50px auto;
	background-color: #F3EDED;
    border: 1px solid #ECE8E8;
	height: 400px;
	border-radius:8px;
	padding: 0px 9px 0px 9px;
}
/*Contenedor de formulario de login*/
.login-box{
   	width: fit-content;
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
    padding: 20px;
    margin-top: 7%;
    border-radius: 2em;
    position: relative;
}
/**
 * Aplicando al icono de usuario el color de fondo,
 * rellenado de 20px y un redondeado de 120px en forma
 * de un circulo
 */
.Icon span{
	background: #A8A6A6;
	padding: 20px;
	border-radius: 120px;
}
/**
 * Se aplica al cotenedor madre un margen de tamño 10px hacia la cabecera y pie,
 * color de fuente blanco,un tamño de fuente 50px y texto centrado.
 */
.Icon{
	margin-top: 10px;
	margin-bottom:10px;
    color: #FFF;
    font-size: 50px;
    text-align: center;
}
/*imagen del logotipo*/
/*DISEÑO OPCION 2
.login-box .Icon img{
    width: 150px;
}*/

.login-box .Icon img {
    width: 80px;
    height: auto;
    position: absolute;
    bottom: -50px;
    right: 50%;
    margin-right: -40px;
    background: #fff;
    padding: 5px;
    border-radius: 50%;
    box-shadow: 0px -5px 15px #888888;
}
.logo-empresa{
	text-align: center;
}
.logo-empresa img{
	width: 25em;
	margin-left: 3em;
	margin-right: 3em;
	margin-top: 2em;
}

/**
 * Se aplica al contenedor donde muetra
 * la opcion de olvidades tu contraseña
 */
.opcioncontra{
	text-align: center;
	margin-top: 20px;
	font-size: 14px;
}

#video_background {
	position: absolute;
	bottom: 0px;
	right: 0px;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: -1000;
	overflow: hidden;
}
#video_pattern {
	background:#0E0E9A;
	position: fixed;
	opacity: 0.5;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: -100;
}
/*formulario*/
.pantalla-login button.btn{
    background: #1e110d;
    color: #fff;
    border: none;
    transition: all 0.5s;
}
.pantalla-login button.btn:hover{
    background: #2d8fac/*#460922*/;
    background-position: 150deg;
}

.input-group-lg .icon-box-user{
    background:/*#460922*/ #1e110d url(../img/iconos/persona-80.png) no-repeat center center;
}
.input-group-lg .icon-box-passw{
    background:/*#460922*/ #1e110d url(../img/iconos/lock-80.png) no-repeat center center;
}
.input-group-lg .icon-box-user,.input-group-lg .icon-box-passw{
   	background-size: 40%;
	color: #f5f5f5;
}

/**
 * EN las siguientes lineas
 * se define el diseño en el que
 * se mostrara en los dispositivos moviles
 */

/******************************************/
/***    DISEÑO PARA MOVILES 320        ****/
/******************************************/
@media only screen and (max-width:320px){
#Contenedor{
	width: 100%;
	height: auto;
	margin: 0px;
}
}
/******************************************/
/***    DISEÑO PARA MOVILES 240        ****/
/******************************************/
@media only screen and (max-width:240px){

}
