/* Style for page. Shared between all login pages */
body,
html {
  height: 100%;
  background-color: #000;
  color: #fff;
  line-height: 20px;
  margin: 0px;
  text-align: center;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
}

body {
  background-color: black;
  background-image: url("../img/background.jpg");
  background-repeat: no-repeat;
  background-position: center top;
}

h2 {
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: 32px;
  font-weight: normal;
  line-height: 40px;
  margin: 20px 0px;
}

.login-container {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -278px;
  margin-left: -315px;
  display: inline-block;
}

.login-box {
  min-height: 430px;
  width: 410px;
  padding: 40px 95px 30px 95px;
  background-color: #003e74;
  border: 15px solid white;
}

.login-header {
  text-align: center;
}

.login-header img {
  background-repeat: no-repeat;
  background-position: center 20px;
  height: 30px;
}

.form-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
}

.form-footer a {
  font-weight: bold;
  color: #93c3c5;
}

.footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 30px 0;
  text-align: center;
}

.footer a {
  color: #ffffff;
  font-size: 13px;
  font-weight: bold;
  text-decoration: none;
}

.footer span {
  padding: 0px 10px;
  border-left: 1px solid white;
}

.footer span:first-child {
  border-left: none;
}

.copyright {
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  color: #dfdede;
}

.auth0-lock.auth0-lock .auth0-lock-header,
.auth0-lock-badge-bottom {
  display: none;
}

.fill-parent {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
}

/* Popup CSS */
.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
  transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}

.modal_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  text-align: left;
  width: 630px;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
}

.modal_header {
  color: #7c7d7e;
  background: #f5f5f5;
  line-height: 20px;
  padding: 20px;
  font-size: 20px;
}

.modal_text {
  color: #7c7d7e;
  height: 510px;
  overflow-y: auto;
  margin: 10px 10px 10px 20px;
  padding-right: 10px;
}

.modal_text h3 {
  font-weight: bold;
  font-size: 24px;
  color: #003e74;
}

.modal_close {
  float: right;
  width: 20px;
  line-height: 1.5rem;
  text-align: center;
  cursor: pointer;
  border-radius: 0.25rem;
  background-color: lightgray;
  margin-bottom: 10px;
}

.modal_close:hover {
  background-color: darkgray;
}

.show_modal {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.hide_widget {
  visibility: hidden;
}

.error_modal .error_modal_content {
  width: 400px;
}

.error_modal .error_modal_content .modal_text {
  height: auto;
  margin: 10px 10px 30px 20px;
}

/* Style used for login forms */
#form {
  display: none;
  padding: 50px 0px;
}

#form .form-control {
  padding: 6px 10px;
  border-radius: 2px;
  height: 20px;
  width: 272px;
  margin: 0px 50px 6px 50px;
  border: 1px solid #cccccc;
  font-weight: 700;
}

#form .btn {
  font-weight: bold;
  font-size: 13px;
  background: #519298;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  color: #fff;
  background-image: linear-gradient(to bottom, #589fa5, #467f84);
  border: 1px solid #cccccc;
  border-color: #467f84 #467f84 #2c4f52;
  display: inline-block;
  line-height: 20px;
  padding: 6px 10px;
  border-radius: 2px;
  height: 34px;
  width: 294px;
  margin: 0px 50px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  vertical-align: middle;
  text-align: center;
}
