@charset "utf-8";


@import url( 'https://fonts.googleapis.com/css?family=Cinzel' );


/* -- form#login-form -------------------------------------------------------------------------------- */

form#login-form {
	width: 600px;
	padding: 40px 0;
	background: #ffffff;
	border: 1px solid #cccccc;
	border-radius: 7px;
	box-shadow: 0 0 5px rgba( 0, 0, 0, 0.2 );
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate( -50%, -55% );
}


form#login-form h1 {
	width: 85%;
	margin: 0 auto;
	font-size: 190%;
	text-align: center;
	font-family: 'Cinzel', serif;
	letter-spacing: 0.08em;
	text-shadow: 3px 4px 2px rgba( 0, 0, 0, 0.1 );
}


form#login-form dl {
	width: 80%;
	margin: 15px auto 0;
}

form#login-form dl dt {
	margin-top: 20px;
}

form#login-form dl dt:first-child {
	margin-top: 0;
}

form#login-form dl dd span {
	display: block;
	color: #ff0000;
	margin-top: 5px;
}


form#login-form input[type="text"],
form#login-form input[type="password"] {
	width: calc( 100% - 4% - 2px );
	padding: 7px 2%;
	background: #fafafa;
	border: 1px solid #cccccc;
	border-radius: 3px;
	-webkit-appearance: none;
	line-height: normal;
	font-size: 16px;
	font-family: inherit;
	margin-top: 5px;
}

form#login-form input[type="text"]:focus,
form#login-form input[type="password"]:focus {
	box-shadow: 0px 0px 5px #55ccff;
	border: 1px solid #55ccff;
	background: #ffffff;
}


form#login-form p.submit {
	width: 80%;
	margin: 30px auto 0;
}

form#login-form input[type="button"] {
	padding: 7px 20px;
	background: #5cb85c;
	border: 1px solid #4cae4c;
	border-radius: 3px;
	-webkit-appearance: none;
	line-height: normal;
	font-size: 16px;
	font-family: inherit;
	color: #ffffff;
}

form#login-form input[type="button"]:hover {
	cursor: pointer;
	background: #449d44;
	border: 1px solid #398439;
}








/* -- responsive ----------------------------------------------------------------------------------------------------------------------- */

/* 1000pixel start */
@media screen and ( max-width: 1000px ) {


form#login-form {
	width: 95%;
	margin: 40px auto;
	position: static;
	transform: translate( 0, 0 );
}


}
/* 1000pixel end */








