html, body{
  width: 100%;
  height: 100%;
}

body{
  margin: 0;
  padding: 0;
  font-family: "Heebo", sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: 222;
  background: -moz-linear-gradient(-45deg, #222 0%, #111 100%);
  background: -webkit-linear-gradient(-45deg, #222 0%, #111 100%);
  background: linear-gradient(135deg, #222 0%, #111 100%);
  color: #656565;
}
.container{
  height: 100%;
}
.row{
  height: 100%;
}
.login-panel{
  padding: 20px 15px;
  border-radius: 4px;
  background: #313131;
  box-shadow: 4px 4px 10px 0 rgba(0,0,0,0.3), 15px 15px 50px 0px rgba(0,0,0,0.2);
}

.login-panel-contents{
  display: block;
  text-align: center;
}

.login-panel-contents img{
  display: block;
  margin: 0 auto;
  width: 280px;
  max-width: 100%;
  height: auto;
}

.login-panel-contents h3{
  margin-bottom: 24px;
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.login-panel-contents img{
  display: block;
  margin: 0 auto;
  width: 280px;
  max-width: 100%;
  height: auto;
}

.login-panel-contents form{
  display: block;
  margin: 0 auto;
  padding: 0;
  width: 80%;
}

.login-panel-contents form input{
  display: block;
  margin: 15px 0;
  padding: 20px 15px;
  box-sizing: border-box;
  width: 100%;
  height: 20px;
  font-size: 16px;
  outline: none;
  border: none;
  border-radius: 4px;
  border-bottom: solid 2px;
  border-color: transparent;
  background: rgba(0,0,0,0.6);
  color: #fff;
  transition: border-radius ease 0.2s, border-color ease 0.2s, background ease 0.2s;
}

.login-panel-contents form input:hover{
  border-radius: 0;
  border-color: #00a79d;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  background: rgba(0,0,0,0.3);
  transition: border-radius ease 0.2s, border-color ease 0.2s, background ease 0.2s;
}

.login-panel-contents form input:focus{
  border-color: #00a79d;
  background: rgba(0,0,0,0);
}

.login-panel-contents .button-box{
  display: block;
  margin: 30px auto 0 auto;
  width: 80%;
}

.login-panel-contents .button-box .button-box-left{
  text-align: left;
  display: inline-block;
  float: left;
  position: relative;
  top: 9px;
}

.login-panel-contents .button-box .button-box-left a{
  font-size: 15px;
  letter-spacing: 0.5px;
  color: #929292;
}
.login-panel-contents .button-box .button-box-left a:hover{
  text-decoration: none;
  color: #00a79d;
}

.login-panel-contents .button-box .button-box-right{
  text-align: right;
  display: inline-block;
  float: right;
}


.login-panel-contents form.input-error input{
  display: block;
  margin: 15px 0;
  padding: 20px 15px;
  box-sizing: border-box;
  width: 100%;
  height: 20px;
  font-size: 16px;
  outline: none;
  border: none;
  border-radius: 4px;
  border-bottom: solid 2px;
  border-color: #fb4253;
  background: rgba(0,0,0,0.6);
  color: #fff;
  transition: border-radius ease 0.2s, border-color ease 0.2s, background ease 0.2s;
}

.login-panel-contents form.input-error input:hover{
  border-radius: 0;
  border-color: #fb4253;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  background: rgba(0,0,0,0.1);
  transition: border-radius ease 0.2s, border-color ease 0.2s, background ease 0.2s;
}

.bg-green{background: #00a79d;}
.bg-red{background: #fb4253;}
.bg-yellow{background: #f3b163;}

.tx-green{color: #00a79d;}
.tx-red{color: #fb4253;}
.tx-yellow{color: #f3b163;}

.br-green{border-color: #00a79d;}
.br-red{border-color: #fb4253;}
.br-yellow{border-color: #f3b163;}

.bttn{
  margin: 0;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  border: solid 1px;
  border-color: #fff;
  border-color: rgba(255,255,255,0.3);
  border-radius: 4px;
  outline: none !important;
  cursor: pointer;
  background: transparent;
  color: #fff;
  transition: background ease 0.2s, border-color ease 0.2s;
}

.bttn-cancel-hover:hover{
  border-color: transparent;
  background: #fb4253;
  color: #fff;
  transition: background ease 0.2s, border-color ease 0.2s;
}

.bttn-cancel-hover.bttn-change:hover{
  border-color: transparent;
  background: #4296ef;
  color: #fff;
  transition: background ease 0.2s, border-color ease 0.2s;
}

.bttn-green{
  border-color: transparent;
  background: #00a79d;
  color: #fff;
  transition: background ease 0.2s;
}

.bttn-green:hover{
  border-color: transparent;
  background: #009087;
  color: #fff;
  transition: background ease 0.2s;
}

.bttn-red{
  border-color: transparent;
  background: #fb4253;
  color: #fff;
}

.login-panel-contents span.notification{
  margin: 20px auto 0 auto;
  padding: 11px 10px 10px 10px;
  width: 80%;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 1px;
  border-radius: 4px;
  border: 1px solid #fb4253;
  background: rgba(200,15,32,0.1);
  color: #fb4253;
  display: block;
}

.login-panel-contents span.notification.okay{
  background: #00a79d;
  border: 1px solid #00a79d;
  background: rgba(0,117,50,0.1);
  color: #00a79d;
}

.input-valid{
  border-color: #00a79d !important;
}

.input-invalid{
  border-color: #fb4253 !important;
}

.mr4{
  margin-right: 4px;
}

.hidden {
  display: none !important;
}