@charset "UTF-8";

.section-login {
	margin: auto;
	padding: 15px;
	position: relative;
	margin-top: 60px;
	color: #7e7975;
	border-radius: 4px;
	text-align: center;
}

.section-login .title {
	margin: 20px 10px;
	padding-bottom: 4px;
	font-size: 14pt;
	font-weight: bold;
	border-bottom: 1px solid #CCC;
	text-align: left;
}

.section-login .inputbox { display: inline-block; width: 150px; }
.section-login .submitbox { display: inline-block;  width: 120px; vertical-align: top; }
.section-login .submitbox input[type="checkbox"] { display: inline-block; margin-top: 12px; width: 22px; height: 22px; vertical-align: middle; }
.section-login .submitbox label { display: inline-block; padding-top: 4px; vertical-align: middle; font-size: 10pt; }

#id { width: 120px; }
#pwd { width: 120px; }
#pwd2 { width: 120px; }

.section-login input[type=text],
.section-login input[type=password] {
	font-size: 14px;
	font-weight: bold;
	padding: 10px;
	margin-bottom: 5px;
	border: 3px solid #ebe6e2;
	border-radius: 5px;
}

.section-login input[type=text]:hover,
.section-login input[type=password]:hover { border-color:#CCC; }

.section-login input[type=text]:focus,
.section-login input[type=password]:focus { border-color:#BBB; }

.section-login input[type=submit] {
	width: 110px;
	height: 50px;
	cursor: pointer;
	font-size: 12pt;
	text-align: center;
	font-weight: bold;
	box-shadow: inset 0 1px rgba(255,255,255,0.3);
	border-radius: 5px;
	margin-left: 5px;
	background: #fbd568; /* Fallback */
	background: -moz-linear-gradient(#fbd568, #ffb347);
	background: -ms-linear-gradient(#fbd568, #ffb347);
	background: -o-linear-gradient(#fbd568, #ffb347);
	background: -webkit-gradient(linear, 0 0, 0 100%, from(#fbd568), to(#ffb347));
	background: -webkit-linear-gradient(#fbd568, #ffb347);
	background: linear-gradient(#fbd568, #ffb347);
	border: 1px solid #f4ab4c;
	color: #996319;
	text-shadow: 0 1px 0 rgba(200,200,200,0.8);
}

.section-login input[type=submit]:hover {
	box-shadow: inset 0 1px rgba(255,255,255,0.3), 
				inset 0 20px 40px rgba(255,255,255,0.15);
}

.selecton-login checkbox { border: 1px solid #EEE; }