@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:#ddd;
}

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

.login{
	width:400px;
	height:600px;
	background:#fff;
	border-radius:0px;
	padding:10px;
	margin:0 auto;
	margin-top:5vh;
	
}

.login img{
	width:80%;
	height:auto;
	display:block;
	margin:0 auto;
	margin-bottom:50px;
	margin-top:50px;
}

.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:200px;
	padding:10px;
	border-radius:10px;
	background:#92c787;
	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;
}

.button:hover{
	transition:background 0.5s;
	background:#57804F;
	cursor:pointer;
}

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

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




