html{ 
	width: 100%;
	height:100%;
	overflow:hidden;
}

body{ 
	width: 100%;
	height:100%;
	font-family: 'Open Sans', sans-serif;
	background: #34495e;
}

.login{
	margin-bottom: 260px;
}

.login h1{
	color: #fff;
	text-shadow: 0 0 10px rgba(0,0,0,0.3);
	letter-spacing:1px;
	text-align:center;
	font-family: 'Titillium Web', sans-serif;
	font-size: 22px;
	margin-top: 100px;
	margin-bottom: 20px;
}

.login h2{
	color: #fff;
	text-shadow: 0 0 10px rgba(0,0,0,0.3);
	letter-spacing:1px;
	text-align:center;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	margin-top: 10px;
	margin-bottom: 20px;
}

input{ 
	width: 100%; 
	margin-bottom: 10px; 
	background: rgba(0,0,0,0.3);
	border: none;
	outline: none;
	padding: 7px;
	font-size: 13px;
	color: #fff;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
	border: 1px solid rgba(0,0,0,0.3);
	border-radius: 4px;
	box-shadow: inset 0 -5px 45px rgba(100,100,100,0.2), 0 1px 1px rgba(255,255,255,0.2);
	-webkit-transition: box-shadow .5s ease;
	-moz-transition: box-shadow .5s ease;
	-o-transition: box-shadow .5s ease;
	-ms-transition: box-shadow .5s ease;
	transition: box-shadow .5s ease;
}

input:focus{
	box-shadow: inset 0 -5px 45px rgba(100,100,100,0.4), 0 1px 1px rgba(255,255,255,0.2);
}

.forgotPass{
	position: absolute;
	right: 8px;
	bottom: 5px;
	color: #fff;
	cursor: pointer;
	z-index: 9999;
	/*margin-right: -10px;*/
}

#loginFeedback{
	color: #fff;
	font-size: 13px;
}

.passwordInfo {
    position:absolute;
    top:246px;
    bottom: -115px\9; /* IE Specific */
    right:0%;
    width:200px;
    padding:10px;
    background:#fefefe;
    font-size:.875em;
    border-radius:5px;
    box-shadow:0 1px 3px #ccc;
    border:1px solid #ddd;
    z-index: 10000;
    margin-bottom: 20px;
    height: 150px;
    display:none;
}
.passwordInfo h4 {
    margin:0 0 5px 0;
    padding:0;
    font-weight:normal;
    font-size: 15px;
    text-align: left;
}
.passwordInfo p{
  padding-left: 10px;
  margin-bottom: 1px;
  text-align: left;
}
.passwordInfo::before {
    content: "\25B2";
    position:absolute;
    top:-12px;
    left:45%;
    font-size:14px;
    line-height:14px;
    color:#ddd;
    text-shadow:none;
    display:block;
}
.invalid {
    color:#ec3f41;
}
.valid {
    color:#3a7d34;
}

.back{
	color: #fff;
	font-size: 14px;
}

.back:hover{
	color: #fff;
}