@charset "UTF-8";

.section-login {
	width: 400px;
	margin: 60px auto 30px;
	padding: 15px;
	position: relative;
	background: #fffaf6;
	color: #7e7975;
	border-radius: 4px;
	box-shadow: 0 2px 2px rgba(0,0,0,0.2), 0 1px 5px rgba(0,0,0,0.2), 0 0 0 12px rgba(255,255,255,0.4);
}

.section-login h1 {
	font-size:18px;
	font-weight:bold;
	color:#000;
	padding-bottom:8px;
	border-bottom:1px solid #EBE6E2;
	text-shadow: 0 1px 0 rgba(200,200,200,0.8);
	box-shadow: 0 1px 0 rgba(255,255,255,0.8);
}

.section-login .float { width:50%;float:left;padding-top:15px;border-top:1px solid #FFF; }
.section-login label {
	width: 300px;
	padding: 0 0 5px 2px;
	cursor: pointer;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 14px;
	text-shadow: 0 1px 0 rgba(200,200,200,0.8);
}

.section-login .inputbox { width: 250px; padding-left: 24px; }
.section-login .submitbox { width: auto; }

#id { width: 140px; margin-left: 21px; }
#pwd { width: 140px; margin-left: 6px; }

.section-login input[type=text],
.section-login input[type=password] {
	font-size: 14px;
	font-weight: bold;
	padding: 5px;
	margin-bottom: 5px;
	border: 3px solid #ebe6e2;
	text-shadow: 0 1px 0 rgba(200,200,200,0.8);
	border-radius: 5px;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.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: 100px;
	height: 70px;
	float: left;
	position: relative;
	cursor: pointer;
	font-family: Calibri,Arial, sans-serif;
	font-size: 14px;
	line-height: 38px;
	text-align: center;
	font-weight: bold;
	box-shadow: inset 0 1px rgba(255,255,255,0.3);
	border-radius: 5px;
	margin-left: 1%;
	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);
}

.section-login input[type=submit]:active { top:1px; }