/*******************
LOGIN FORM STYLESHEET
by: Amit Jakhu

*******************/

/*******************
FONTS
*******************/

/*******************
SELECTION STYLING
*******************/

::selection {
	color: #fff;
	background: #f676b2; /* Safari */
}
::-moz-selection {
	color: #fff;
	background: #f676b2; /* Firefox */
}

/*******************
BODY STYLING
*******************/

* {
	margin: 0;
	padding: 0;
	border: 0;
}

body {
background:#F0F0F0;
	font-family: Arial;
	font-weight:300;
	text-align: left;
	text-decoration: none;
}

#wrapper {
	/* Center wrapper perfectly */
	width: 300px;
	height: 300px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -150px;
	margin-top: -200px;
}

/*
.gradient {
	width: 600px;
	height: 600px;
	position: fixed;
	left: 50%;
	top: 50%;
	margin-left: -300px;
	margin-top: -300px;
	
	background: url(../images/gradient.png) no-repeat;
}
*/

.gradient {

	width: 600px;
	height: 300px;
	position: fixed;
	left: 50%;
	top: 50%;
	margin-left: -300px;
	margin-top: -300px; 
	
	/* CSS3 Gradient
	background-image: -webkit-gradient(radial, 0% 0%, 0% 100%, from(rgba(213,246,255,1)), to(rgba(213,246,255,0)));
	background-image: -webkit-radial-gradient(50% 50%, 40% 40%, rgba(213,246,255,1), rgba(213,246,255,0));
	background-image: -moz-radial-gradient(50% 50%, 50% 50%, rgba(213,246,255,1), rgba(213,246,255,0));
	background-image: -ms-radial-gradient(50% 50%, 50% 50%, rgba(213,246,255,1), rgba(213,246,255,0));
	background-image: -o-radial-gradient(50% 50%, 50% 50%, rgba(213,246,255,1), rgba(213,246,255,0)); */
}

/*******************
LOGIN FORM
*******************/

.login-form {
	width: 300px;
	margin: 0 auto;
	position: relative;
	z-index:5;
	

	-moz-box-shadow: 0px 1px 3px 2px rgba(0,0,0,0.1);
  -webkit-box-shadow: 0px 1px 3px 2px rgba(0,0,0,0.1);
  box-shadow: 0px 1px 3px 2px rgba(0,0,0,0.1);
  
   background: rgb(249,249,152);
 /* Old browsers */
  background: -moz-linear-gradient(top,  rgba(249,249,152,1) 0%, rgba(249,249,249,1) 23%, rgba(255,255,255,1) 83%, rgba(188,224,238,1) 100%);
 /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(249,249,152,1)), color-stop(23%,rgba(249,249,249,1)), color-stop(83%,rgba(255,255,255,1)), color-stop(100%,rgba(188,224,238,1)));
 /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top,  rgba(249,249,152,1) 0%,rgba(249,249,249,1) 23%,rgba(255,255,255,1) 83%,rgba(188,224,238,1) 100%);
 /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top,  rgba(249,249,152,1) 0%,rgba(249,249,249,1) 23%,rgba(255,255,255,1) 83%,rgba(188,224,238,1) 100%);
 /* Opera 11.10+ */
  background: -ms-linear-gradient(top,  rgba(249,249,152,1) 0%,rgba(249,249,249,1) 23%,rgba(255,255,255,1) 83%,rgba(188,224,238,1) 100%);
 /* IE10+ */
  background: linear-gradient(to bottom,  rgba(249,249,152,1) 0%,rgba(249,249,249,1) 23%,rgba(255,255,255,1) 83%,rgba(188,224,238,1) 100%);
 /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9f998', endColorstr='#bce0ee',GradientType=0 );
 /* IE6-9 */

	/*
	box-shadow: 0 1px 3px rgba(0,0,0,0.5);
	-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.5);*/
}
.error {
	text-align:center;
	color:red;
}
/*******************
HEADER
*******************/

.login-form .header {
	padding: 10px 5px 5px 5px;
}

.login-form .header h1 {
	font-family: Arial;
	font-weight: 300;
	font-size: 28px;
	line-height:34px;
	color: #414848;
	text-shadow: 1px 1px 0 rgba(256,256,256,1.0);
	margin-bottom: 10px;
	text-align:center;
	border-bottom:1px solid #CCC;
	padding:0 0 10px 0;
	border-bottom-left-radius:2px;
	border-bottom-right-radius:2px;
	
	

}

.login-form .header span {
	font-size: 11px;
	line-height: 16px;
	color: #678889;
	text-shadow: 1px 1px 0 rgba(256,256,256,1.0);
}

/*******************
CONTENT
*******************/

.login-form .content {
	padding: 0 30px 25px 30px;
}

/* Input field */
.login-form .content .input {
	width: 188px;
	padding: 10px 25px;
	
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
	font-weight: 400;
	font-size: 14px;
	color: #9d9e9e;
	text-shadow: 1px 1px 0 rgba(256,256,256,1.0);
	
	background: #fff;
	border: 1px solid #CCC;
	
/* 	box-shadow: inset 0 1px 3px rgba(0,0,0,0.50);
	-moz-box-shadow: inset 0 1px 3px rgba(0,0,0,0.50);
	-webkit-box-shadow: inset 0 1px 3px rgba(0,0,0,0.50); */
}

/* Second input field */
.login-form .content .password, .login-form .content .pass-icon {
	margin-top: 0px;
}

.login-form .content .input:hover {
	background: #dfe9ec;
	color: #414848;
}

.login-form .content .input:focus {
	background: #dfe9ec;
	color: #414848;
	
}

/* .user-icon, .pass-icon {
	width: 46px;
	height: 38px;
	display: block;
	position: absolute;
	left: 0px;
	padding-right: 2px;
	z-index: 3;
	
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-bottomleft: 5px;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
} */

.user-icon {
	top:60px; /* Positioning fix for slide-in, got lazy to think up of simpler method. */
	background: rgba(65,72,72,0.75) url(assets/images/user-icon.png) no-repeat center;	
}

.pass-icon {
	top:125px;
	background: rgba(65,72,72,0.75) url(assets/images/pass-icon.png) no-repeat center;
}

/* Animation */
.input, .user-icon, .pass-icon, .button, .register {
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
}

/*******************
FOOTER
*******************/

.login-form .footer {
	overflow: auto;

	padding:0px  5px 20px;
	width:290px;
	
	
	
}

/* Login button */
.login-form .footer .button {
	float:right;
	padding: 4px 15px;
	margin-right:25px;
	
	font-family: Arial;
	font-weight: 300;
	font-size: 18px;
	color: #fff;
	text-shadow: 0px 1px 0 rgba(0,0,0,0.25);
	
	background-color:#629DFC;
	
	border-radius: 2px;
	cursor: pointer;

}

.login-form .footer .button:hover {
	background: #3f9db8;
	
	box-shadow:  0 1px 3px rgba(0,0,0,0.5);
	-moz-box-shadow:  0 1px 3px rgba(0,0,0,0.5);
	-webkit-box-shadow:  0 1px 3px rgba(0,0,0,0.5);
}

.login-form .footer .button:focus {
	position: relative;
	bottom: -1px;
	background: #3f9db8;
}

