@charset "UTF-8";
/* CSS Document */

@font-face {font-family: "Alternate Gothic No.2 BT";src: url(../fonts/AlternateGothic.ttf) format("truetype");}
@font-face {font-family: "Digital-7";src: url(../fonts/digital-7mono.ttf) format("truetype");}
@font-face {font-family: "Abadi MT Condensed Light";src: url(../fonts/Abadi-MT-Condensed-Light-Regular.ttf) format("truetype");}

body{
	background:url("../images/bg.jpg") fixed;
	background-size:auto 100vh;
}

p{
	font-family: "Abadi MT Condensed Light";
	margin:0px;
	color:#ddd;
}

h1{
	color:#fff;
	font-family: "Alternate Gothic No.2 BT";
	font-weight: normal;
}

.login{
	width:350px;
	height:500px;
	background:#111;
	border-radius:10px;
	padding:10px;
	margin:0 auto;
	margin-top:100px;
}

.loginHolder{
	width:300px;
	height:500px;
	float:left;
}

.loginLeft{
	width:40px;
	height:500px;
	float:left;
	background:#000;
	border-radius:3px;
	margin-right:10px;
}

.login img{
	width:50%;
	height:auto;
	display:block;
	margin:0 auto;
	margin-top:20px;
	margin-bottom:50px;
	border-radius:300px;
	border:3px solid #ddd;
}


.loginLeft img{
	width:50%;
	height:auto;
	border:none;
	border-radius:0px;
	margin-top:250px;
}

.login .message{
	width:90%;
	height:30px;
	margin:0 auto;
}

.login .message p{
	width:100%;
	background:#eb132d;
	border-radius:3px;
	color:#fff;
	text-align:center;
	padding-top:3px;
	padding-bottom:3px;
	display:none;

}

.button{
	width:150px;
	padding:10px;
	border-radius:5px;
	background:#e51d39;
	color:#fff;
	margin:0 auto;
	margin-top:10px;
	margin-bottom:10px;
	font-family: "Abadi MT Condensed Light";
	font-size:20px;
	text-align:center;
	cursor:pointer;
	transition:background 2s, color 2s;
}

.button:hover{
	transition:background 0.5s;
	background:#BC162D;
}

a{
	font-family: "Abadi MT Condensed Light";
	font-size:15px;
	color:#ccc;
	text-align:center;
	display:block;
	text-decoration:none;
}

input{
	width:90%;
	padding:5px;
	margin:0 auto;
	margin-top:5px;
	margin-bottom:5px;
	border-radius:5px;
	border:1px solid #ccc;
	font-family: "Abadi MT Condensed Light";
	font-size:20px;
	color:#111;
	text-align:center;
	display:block;
}
.line{
	width:100%;
	height:1px;
	border-top:1px dotted #333;
	margin-top:10px;
	margin-bottom:10px;
}




