@charset "ISO-8859-1";
/* CSS Document */
body {
    background-image: url("../images_sistema/fondoLogin.jpg");
	width: 100%;
	min-height: 100vh;
	padding: 15px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
	z-index: 1;
}
@media (max-width: 600px) {
	body {
    background: #FFF;
}
}
.containerLog {
	width: 600px;
	margin: 0 auto;
	background-color: #fff;
    border-radius: 4px;
	padding: 2em 3em;
	margin-top: 50px;
	box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
	position: relative;
}
.containerLog img {
	display: block;
	margin: auto;
}
@media (max-width: 600px) {
	.containerLog {
		width: 100%;
		border-radius: 0px;
		box-shadow: none;
		margin-top: 0px;
	}
}
.form-control {
	padding: 1em;
    box-sizing: border-box;
    background-color: white;
    border-radius: 3px;
    border: 1px solid #DDD;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.06);
}
.btn-primary {
	width: 100%;
	padding: 10px;
}
.botLog {
	position: absolute;
	right: 5px;
	top: 5px;
	color: #FFF;
}
.botLog .btn-secondary{
	background-color: #a5adc4;
	border-color: #09123e;
}
.botLog .botLogAct {
	background-color: #081a4f;
}
.button6{
	color: rgba(255,255,255,1);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	border: 1px solid rgba(255,255,255,0.5);
	position: relative;	
}
.button6 a{
	color: rgba(51,51,51,1);
	text-decoration: none;
	display: block;
}
.button6 span{
	z-index: 2;	
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;	
}
.button6::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 0;
	background-color: rgba(255,255,255,0.5);
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	-webkit-transform: scale(0.5, 1);
	transform: scale(0.5, 1);
	border-radius: .25rem;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.button6:hover::before{
	opacity: 1;
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
}