@import url("https://fonts.googleapis.com/css?family=Cabin|Catamaran:400,600,700|Quicksand");

html {
  width: 100%;
  height: 100%;
  text-align: left;
  background: #67B26F; /* fallback for old browsers */
  background: -webkit-linear-gradient(to bottom, #67B26F , #4ca2cd); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to bottom, #67B26F , #4ca2cd); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  font-family: "Quicksand";
  font-size: 18px;
  box-sizing: border-box;
  height: 100%;
  -webkit-font-smoothing: antialiased;
}

*,:before,:after {
  box-sizing: inherit;
}

.logo {
    float: none;
    width: 240px;
    height: 57px;
    overflow: hidden;
    text-indent: -9999px;
    background: url(../images/pp2-logo-white.png) no-repeat center top / 100% auto;
    margin: 0px;
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 10;
    display: inline-block;
    margin: 0 auto;
}

.login-box {
  top: 400px;
  bottom: auto;
  left: 0;
  right: 0;
  width: 500px;
  height: auto;
  display: inline-block;
  float: none;
  margin: -185px auto 0;
  background-color: rgba(0,0,0,0.25);;
  box-shadow: 0 0 0 10px rgba(0,0,0,0.15);
  color: #FFF;
  position: fixed;
  padding: 1.2em 2em 1em;
}

input[type="text"],
input[type="password"] {
  margin: 0;
  outline: 0;
  -webkit-appearance: none;
  tap-highlight-color: rgba(255,255,255,0);
  line-height: 1.2142em;
  padding: 0.6em 0.5em;
  font-size: 1em;
  background: #fff;
  border: 1px solid rgba(34,36,38,.15);
  color: rgba(0,0,0,.87);
  border-radius: .28571429rem;
  box-shadow: 0 0 0 0 transparent inset;
  -webkit-transition: color .1s ease,border-color .1s ease;
  transition: color .1s ease,border-color .1s ease;
  width: 100%;
  margin-bottom: 1em;
}

label {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 0.5em;
  display: inline-block;
  width: auto;
  position: relative;
  top: 2px;
}

.btn-submit {
  background-color:#44c767;
  -moz-border-radius:5px;
  -webkit-border-radius:5px;
  border-radius:5px;
  border:1px solid #18ab29;
  display:inline-block;
  cursor:pointer;
  color:#ffffff;
  font-family:Arial;
  font-size:20px;
  padding:16px 31px;
  text-decoration:none;
  width: 100%;
  margin: 1em 0;
}
.btn-submit:hover {
  background-color:#5cbf2a;
}

.btn-submit:active {
  position:relative;
  top:1px;
}

.check {
  font-size: 15px;
  float: left;
  margin: 10px 0 0 0;
}

.forget {
  font-size: 15px;
  margin: 10px 0 0 0;
  float: right;
  color: #effaff;
}

@media screen and (min-width: 2600px) {

  .login-box {
    top: 350px;
  }

}