*{
	margin: 0;
	padding:0;
}
html,body{
	width:100%;
	height: 100%;
}
.row{
	margin-left: 0px;
	margin-right: 0px;
	position: relative;
}
.content{
	width:360px;
	height:auto;
	position: absolute;
	top:50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: white;
}
.bg{
	position: absolute;
	width:100%;
	height: 100%;
	z-index: -999;
	top:0;
	left: 0;
}
.bg img{
	width:100%;
	height: 100%;
}
.cloud{
	text-align: center;
	margin-bottom: 20px;
}
.cloud img{
	max-width: 160px;
}
.title{
	font-size: 26px;
	display: block;
	text-align: center;
}
form{
	margin-top:50px;
}
.form-control{
	background-color:transparent;
	padding-left:40px;
	border:1px solid rgba(255,255,255,0.6);
	border-radius: 0px;
	width:360px;
	color: white;
}
.gly{
	position: relative;
	top:-33px;
	background: rgba(151,198,212,0.46);
	font-size: 22px;
	height: 32px;
	display: inline-block;
	width:32px;
	left:1px;
}
.glyphicon{
	left:5px;
	top:3px;
}
.placeholder{
	color: white;
	display: inline-block;
	position: relative;
	top:-35px;
	left:5px;
}
@keyframes animate_left_to_right{
	0%{left:5px;opacity: 1.0;}
	100%{left:300px;opacity: 0;}
}
@-webkit-keyframes animate_left_to_right{
	0%{left:5px;opacity: 1.0;}
	100%{left:300px;opacity: 0;}
}
@-moz-keyframes animate_left_to_right{
	0%{left:5px;opacity: 1.0;}
	100%{left:300px;opacity: 0;}
}
@-o-keyframes animate_left_to_right{
	0%{left:5px;opacity: 1.0;}
	100%{left:300px;opacity: 0;}
}
@keyframes animate_right_to_left{
	0%{left:300px;opacity: 0;}
	100%{left:5px;opacity: 1.0;}
}
@-webkit-keyframes animate_right_to_left{
	0%{left:300px;opacity: 0;}
	100%{left:5px;opacity: 1.0;}
}
@-moz-keyframes animate_right_to_left{
	0%{left:300px;opacity: 0;}
	100%{left:5px;opacity: 1.0;}
}
@-o-keyframes animate_right_to_left{
	0%{left:300px;opacity: 0;}
	100%{left:5px;opacity: 1.0;}
}
.animate_ltr{
	animation:animate_left_to_right 0.2s linear forwards;
	-webkit-animation:animate_left_to_right 0.2s linear forwards;
	-moz-animation:animate_left_to_right 0.2s linear forwards;
	-o-animation:animate_left_to_right 0.2s linear forwards;
}
.animate_rtl{
	animation:animate_right_to_left 0.2s linear forwards;
	-webkit-animation:animate_right_to_left 0.2s linear forwards;
	-moz-animation:animate_right_to_left 0.2s linear forwards;
	-o-animation:animate_right_to_left 0.2s linear forwards;
}
.login{
	background: #77c6ee;
	position: relative;
	z-index: 3;
	padding: 5px 40px;
	left:115px;
}
.login:focus{
	-webkit-box-shadow:none;
          box-shadow: none;
}
.login span{
	color:white;
	z-index: 3;
	position: relative;
	font-size: 20px;
}
.login:hover,.btn-click{
	background: transparent;
	border:1px solid #77c6ee;
}
.error,.ok{
	position: absolute;
	right:10px;
	display: none;
	top:-20px;
	font-size: 12px;
}
.error .glyphicon{
	right:0px;
	color: #ffc410;
}
.error .err-content{
	color: #ffc410;
}
.ok .glyphicon{
	right:0px;
	color: #6ab05c;
}
.ok .err-content{
	color: #6ab05c;
}
.copyright {
    color: rgba(255,255,255,.8);
    bottom: 10px;
    width: 100%;
    text-align: center;
    position: absolute;
}