/* *********************************************************************************************

Login form tutorial (CSS3 + jQuery) [Tutorial]
"Login form tutorial (CSS3 + jQuery)" that was specially made for DesignModo by our friend Valeriu Timbuc. 

Links:
http://vtimbuc.net/
https://twitter.com/vtimbuc
http://designmodo.com/futurico
http://vladimirkudinov.com
http://rockablethemes.com

********************************************************************************************* */
html {
	background: url(../pix/noise.png) repeat left top;
}
.login-form,
.login-form h1,
.login-form span,
.login-form input,
.login-form label {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}
#global {width:100%; margin-top:100px;}
/* Form Container */
.login-form {
	margin:auto;
	position: relative;
	width: 200px;
	height: 200px;
	padding: 0 25px 0 25px;
	cursor: default;

}

.login-form:before {
	position: absolute;
	top: -12px;
	left: 10px;

	width: 0px;
	height: 0px;
	content: '';
	/*
	border-bottom: 10px solid #141517;
	border-right: 10px solid #141517;
	border-top: 10px solid transparent;
	border-left: 10px solid transparent;
	*/
}

/* Form Title */
.login-form	h1 {
	color:#fff;
	font-size:32px;
	
	font-weight:normal;
	font-family: 'Pacifico', cursive;	
	text-shadow: 0px 0px 3px #777;
	color: #333;
}

/* Form Input General Styles */
.login-form input[type=text],
.login-form input[type=password],
.login-form input[type=submit] {
	line-height: 14px;
	margin: 10px 0;
	padding: 6px 15px;
	border: 0;
	outline: none;

	font-family: Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-shadow: 0px 1px 1px rgba(255,255,255, .2);

	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;

}

/* Form User&Pass Input Styles */
.login-form input[type=text],
.login-form input[type=password],
.js .login-form span {
	color: #686868;
	width: 250px;

	padding: 10px 15px;
	
	-webkit-box-shadow: inset 1px 1px 1px 0px rgba(255,255,255, .6);
	-moz-box-shadow: inset 1px 1px 1px 0px rgba(255,255,255, .6);
	box-shadow: inset 1px 1px 1px 0px rgba(255,255,255, .6);
	border:1px solid #999;
	background: #ffffff;
	background: -moz-linear-gradient(top,  #ffffff 0%, #e1e1e1 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#e1e1e1));
	background: -webkit-linear-gradient(top,  #ffffff 0%,#e1e1e1 100%);
	background: -o-linear-gradient(top,  #ffffff 0%,#e1e1e1 100%);
	background: -ms-linear-gradient(top,  #ffffff 0%,#e1e1e1 100%);
	background: linear-gradient(top,  #ffffff 0%,#e1e1e1 100%);
}

.login-form input[type=text]:hover,
.login-form input[type=password]:hover {
	border:1px solid #999;
	-webkit-box-shadow: inset 1px 1px 1px 0px rgba(255,255,255, .6), 0px 0px 5px rgba(255,255,255, .5);
	-moz-box-shadow: inset 1px 1px 1px 0px rgba(255,255,255, .6), 0px 0px 5px rgba(255,255,255, .5);
	box-shadow: inset 1px 1px 1px 0px rgba(255,255,255, .6), 0px 0px 5px rgba(255,255,255, .5);
}

.login-form input[type=text]:focus,
.login-form input[type=password]:focus {
	border:1px solid #999;
	background: #fff;
	background: -moz-linear-gradient(top,  #ffffff 0%, #eeeeee 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#eeeeee));
	background: -webkit-linear-gradient(top,  #ffffff 0%,#eeeeee 100%);
	background: -o-linear-gradient(top,  #ffffff 0%,#eeeeee 100%);
	background: -ms-linear-gradient(top,  #ffffff 0%,#eeeeee 100%);
	background: linear-gradient(top,  #ffffff 0%,#eeeeee 100%);
}

/* Form Submit Input Styles */
.login-form input[type=submit],
.js .login-form span.checked:before {
	float: right;
	cursor: pointer;

	color: #ffffff;
}

.login-form input[type=submit]:hover {
	background: #333333;
	background: -moz-linear-gradient(top,  #333333 0%, #666666 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#333333), color-stop(100%,#666666));
	background: -webkit-linear-gradient(top,  #333333 0%,#666666 100%);
	background: -o-linear-gradient(top,  #333333 0%,#666666 100%);
	background: -ms-linear-gradient(top,  #333333 0%,#666666 100%);
	background: linear-gradient(top,  #333333 0%,#666666 100%);
}

.login-form input[type=submit]:active {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

/* Form Green Gradient Styles */
.login-form input[type=submit],
.js .login-form span.checked:before {
	background: #333333;
	background: -moz-linear-gradient(top,  #333333 0%, #444444 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#333333), color-stop(100%,#444444));
	background: -webkit-linear-gradient(top,  #333333 0%,#444444 100%);
	background: -o-linear-gradient(top,  #333333 0%,#444444 100%);
	background: -ms-linear-gradient(top,  #333333 0%,#444444 100%);
	background: linear-gradient(top,  #333333 0%,#444444 100%);
}

/* Form Checkbox Input Styles */
.js .login-form input[type=checkbox] {
	position: fixed;
	left: -9999px;
}

.login-form span {
	position: relative;
	margin-top: 15px;
	float: left;
}

.js .login-form span {
	width: 16px;
	height: 16px;
	cursor: pointer;

	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}

.js .login-form span.checked:before {
	content: '';
	position: absolute;
	top: 4px;
	left: 4px;
	width: 8px;
	height: 8px;

	-webkit-box-shadow: 0px 1px 1px 0px rgba(255,255,255, .45), inset 0px 1px 1px 0px rgba(0,0,0, .3);
	-moz-box-shadow: 0px 1px 1px 0px rgba(255,255,255, .45), inset 0px 1px 1px 0px rgba(0,0,0, .3);
	box-shadow: 0px 1px 1px 0px rgba(255,255,255, .45), inset 0px 1px 1px 0px rgba(0,0,0, .3);
}

/* Form Label Styles */

.login-form label {
	position: absolute;
	top: 1px;
	left: 25px;
	font-family: sans-serif;
	font-weight: bold;
	font-size: 12px;
	color: #e4e4e4;
}