@charset "utf-8";
/* CSS Document */

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}

.login-header {
  margin-bottom: 0;
}

.vertical-center {
  height:100%;
  width:100%;
  text-align: center;  /* align the inline(-block) elements horizontally */
  font: 0/0;         /* remove the gap between inline(-block) elements */
}
.vertical-center:before {    /* create a full-height inline block pseudo=element */
  content: " ";
  display: inline-block;
  vertical-align: middle;    /* vertical alignment of the inline element */
  height: 100%;
}

.vertical-center > .login-block {
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;  /* vertical alignment of the inline element */
}

.login-block .well-lg,
.login-block .well-sm {
  background: rgba(54, 76, 75, .7);
  border: 1px solid #999999;
}

.login-block .well-lg {
  padding: 24px 60px;
}