body{ background:#000 }
.bg {
	/*background: #000 url(../images/login-bg.jpg) no-repeat center center fixed;*/
	background-color:#000;
	background-repeat:no-repeat;
	background-position:center center;
	background-attachment:fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
	/*-webkit-filter: blur(1px);*/
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	z-index:0;
	opacity:.6
}
.form {
  position: absolute;
  top: 50%;
  left: 50%;
  /*background: #fff;*/
	background:rgba(255, 255, 255, .7);
	/*
  width: 285px;
  margin: -140px 0 0 -182px;
  padding: 40px;
	*/
  width:300px;
  margin:-190px 0 0 -150px;
  padding: 40px;
	box-sizing:border-box;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
	z-index:99
}
.form h2 {
  margin: 0 0 20px;
  line-height: 1;
  color: #2ecc71;
  font-size: 18px;
  font-weight: 400;
}
.form input[type="text"] {
  outline: none;
  display: block;
  width: 100%;
  margin: 0 0 20px;
  padding: 10px 15px;
  border: 1px solid #ccc;
  color: #ccc;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
}
.form input:focus {
  color: #333;
  border: 1px solid #2ecc71;
}
.form button {
  cursor: pointer;
  background: #2ecc71;
  width: 100%;
  padding: 10px 15px;
  border: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
}
.form button:hover {
  background: #27ae60;
}

p.passwd{ text-align:center; margin:20px 0 0 }
