body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background: url('../images/login.jpg') 50% 50% fixed no-repeat !important;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
}

.logo {
  padding-bottom:2rem;
}

.step {
  height:calc(30%);
}

.login {
  background: url("../images/bg-overlay.png") repeat scroll 0 0 rgba(0, 0, 0, 0);
  z-index: 0;
}

.login input[type=text], .login input[type=password], .login input[type=submit] {
  width: 90%;
  height: 30px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 10px;
  color: black;
  font-family: 'Advent Pro', sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 4px;
}

.login input[type=submit]{
  height: 35px;
  background: #fff;
  border: 3px solid #008CBA;
  cursor: pointer;
  color: #008CBA;
  padding: 6px;
}

.login p {
  color:white;
  font-size:18px;
  font-weight:700;
  text-align:right;
}

.login input[type=text]:focus{
  outline: none;
  border: 3px solid rgba(255,255,255,0,9);
}

.login input[type=password]:focus{
  outline: none;
  border: 3px solid rgba(255,255,255,0.9);
}

.login input[type=submit]:focus{
  outline: none;
}

::-webkit-input-placeholder{
   color: rgba(255,255,255,0.6);
}

::-moz-input-placeholder{
   color: rgba(255,255,255,0.6);
}


/*Social Links start here*/
.lk-fb-icon, .lk-www-icon {
    margin-top:30px;
    height:50px;
    width:60px;
    display: block;
    float:right;
}

.lk-fb-icon {
    margin-right:5%;
}

a.lk-fb-icon {
    background: url(../images/facebook.png) no-repeat;
}
a.lk-fb-icon:hover {
    background: url(../images/facebook-hover.png) no-repeat !important;
}
a.lk-www-icon {
    background: url(../images/www.png) no-repeat;
}
a.lk-www-icon:hover {
    background: url(../images/www-hover.png) no-repeat !important;
}

@media only screen and (max-width: 780px) {

  .logo {
    padding-bottom:1rem;
  }

  .step {
    height:calc(20%);
  }

  .login p {
    text-align:left;
  }

  .login input[type=text], .login input[type=password], .login input[type=submit] {
   width: 100%;
  }

  .lk-fb-icon {
    margin-right:0;
  }

}