@charset "utf-8";
/* CSS RGTool 3.0
 * Styles for login Screen
 *
 * @author Luca Bonetto
 * @date 18.08.2015
 */
@font-face {
    font-family: ubuntu;
    src: url(../fonts/Ubuntu-R.ttf);
} 
html, body {
	width:100%;
 	height:100%;
    background-image: url("../images/bg_login.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-color:#fff;
	margin:0;
}
#logincontainer{
	width: 800px;
	height: 100%;
	position:absolute;	
	left:50%;
	margin-left:-400px;
}
#loginbg {
	background-color:#fff;
 	opacity: 0.6;
    filter: alpha(opacity=60);
	width:100%;
 	height:100%;
 	position:absolute;
	top:0;
}
#loginform{
	position:absolute;
	top:170px;
	z-index:6;
	width:100%;
    font-family: ubuntu;
    font-size:12pt;
    color:#000040;
    text-align:center;
}
#loginform span{
	font-size:25pt;
}
#loginform h5{
	color:#ff6600;
}
table {
	border:none;
	margin:50px auto;
}
.contacts{
	width:90%;
	margin:-30px auto 40px auto;
}
input{
	width:350px;
	height:35px;
	font-size:22px;
	margin:10px;
}
input[type="password"]{
	font-size:40px;
}
input[type="submit"]{
	width:100px;
	color:#fff;
	background-color:#ee8d78;
	font-size:12pt;
	border:none;
}
a:link, a:visited{ 
	text-decoration:none; 
	color:#000040;
}
a:hover{ text-decoration:underline; }

.alert-danger{
	color: #a94442;
	background-color: #f2dede;
	border-color: #ebccd1;
}