@charset "utf-8";
/* CSS Document */

body {
	background: url(../imagens/background.png) no-repeat center;
	background-attachment:fixed;
	background-size: 100% 100%;
	font-family:'Calibri';
}

#box_login {
	
	width: 400px;
	height: 300px;
    position: absolute;
    left: 50%; top: 50%;
    margin-left: -200px;
    margin-top: -150px;
    background-color: #FFF;
	//background: url(../imagens/transparencia.png);
    border-radius: 5px;
    border: 0;
}

#titulo{
	position: relative;
	width: 100%;
	height: 40px;
	top: 0px;
	padding-top: 15px;
	text-align: center;
	font-family: 'Open Sans', sans-serif;
	color: #FFF;
	font-size: 20px;
	font-weight: bold;
	background: #1A3B70;
	-webkit-border-top-left-radius: 4px;
	-webkit-border-top-right-radius: 4px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright: 4px;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
}
#titulo #logo {
	position: relative;
	width: 40px;
	height: 40px;
	background: url(../imagens/logo-mini.png);
	float: left;
	left: 10px;	
	bottom: 8px;
	margin-right: -10px;
}

#titulo-master {
	position: relative;
	width: 100%;
	height: 30px;
	top: 0px;
	padding-top: 15px;
	text-align: center;
	font-family: 'Open Sans', sans-serif;
	color: #FFF;
	font-size: 20px;
	font-weight: bold;	
	-webkit-border-top-left-radius: 4px;
	-webkit-border-top-right-radius: 4px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright: 4px;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	background: #eeeeee;
	background: -moz-linear-gradient(top, #eeeeee 0%, #cccccc 100%);
	background: -webkit-linear-gradient(top, #eeeeee 0%,#cccccc 100%);
	background: linear-gradient(to bottom, #eeeeee 0%,#cccccc 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#cccccc',GradientType=0 );
}


#dados-login{		
	position: relative;
	width: 250px; 
	height: auto;
	margin: 0 auto;
	margin-top: 30px;
}

#dados-login input[type=text], input[type=password]{	
	width: 250px;
	height: 50px;
	margin-bottom: 10px;
	font-size: 20px;
	padding-top: 5px;
	padding-bottom: 5px;
	box-sizing: border-box;
	border: 1px solid #CCC;
	border-radius: 2px;
	font-family: 'Open Sans', sans-serif;
	-webkit-box-shadow: inset 0px 0px 80px -57px rgba(0,0,0,0.75);
	-moz-box-shadow: inset 0px 0px 80px -57px rgba(0,0,0,0.75);
	box-shadow: inset 0px 0px 80px -57px rgba(0,0,0,0.75);
	
}

#pin{
	width: 250px; 
	margin-right: 18px; 
	text-align:center;
	background-image: url(../imagens/pin.png);
	background-repeat: no-repeat;
	padding-left: 55px;
	padding-right: 55px;
}

#senha{
	width: 250px; 
	text-align:center;
	background-image: url(../imagens/senha.png);
	background-repeat: no-repeat;
	padding-left: 55px;
	padding-right: 55px;
}

#dados-login input[type=text]:focus, input[type=password]:focus{	
	-webkit-box-shadow: inset 0px 0px 62px -30px rgba(0,0,0,0.75);
	-moz-box-shadow: inset 0px 0px 62px -30px rgba(0,0,0,0.75);
	box-shadow: inset 0px 0px 62px -30px rgba(0,0,0,0.75);
	

}

#dados-login #botao-enviar{	
	width: 250px;
	height: 50px;
	margin-bottom: 10px;
	font-size: 20px;
	padding-top: 5px;
	padding-bottom: 5px;
	margin: 0 auto;
	box-sizing: border-box;
	border-radius: 2px;
	font-family: 'Open Sans', sans-serif;
	color:#FFF;
	background: #1A3B70;
	border: 0;
}

#dados-login #botao-enviar:hover{
	background: #007095;

}

#dados-login #alerta{
	visibility: hidden;
	position: relative;
	width: 250px;
	height: 20px;
	font-family: 'Open Sans', sans-serif;
	text-align: center;
	font-weight: bold;
	background-color: #3E5B89;
	padding-top:5px;
	font-size: 12px;
	margin-top: 10px;
	color: #FFF;
	border-radius: 2px;
}

