@font-face {
  font-family: "Camptons";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("Campton-Book.ttf") format("truetype");
}

html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
  outline: 0;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: url("../img/isg_bg.jpg");
  background-size: cover;
  background-position: bottom;
  background-color: #fefcfb;
  color: #333;
  font-family: "Camptons", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial,
    "Lucida Grande", sans-serif;
}
.table {
  display: table;
  width: 100%;
  padding: 20px 0px;
  height: 100%;
}
.cell {
  display: table-cell;
  vertical-align: middle;
}
.login-container {
  display: flex;
  width: 400px;
  height: 400px;
  background: #ffffff;
  border-radius: 10px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0px 0px 1px #ccc, 0px 70px 100px -70px #0a94d5;
}
.login {
  width: 400px;
  padding: 20px 60px;
  height: 100%;
  display: inline-block;
  position: relative;
}
.login::before {
  content: "Process Portal";
  display: block;
  position: absolute;
  top: 5px;
  right: 10px;
  color: #0a94d5;
  font-size: 12px;
}
span.powered {
  font-weight: 500;
  color: #ccc;
  text-transform: uppercase;
  font-size: 10px;
  display: block;
  margin-bottom: 5px;
}
h3 {
  margin: 0;
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 23px;
}

.input-group {
  margin: 15px 0px;
}
.input-group label {
  display: block;
  width: 100%;
  font-size: 14px;
  color: #888;
}
.input-group input {
  width: 100%;
  height: 35px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  font-family: "Camptons";
  padding: 0px 10px;
}

.input-group input:focus {
  border: 0;
  box-shadow: 0px 0px 1px #0a94d5, 0px 5px 10px #0a94d526;
}
.info {
  width: 450px;
  height: 100%;
  background: #0a94d5;
  display: inline-block;
}
.info div {
  width: 100%;
  height: 100%;
  background-image: url("../img/login_img.png");
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
}
.button.ok {
  display: block;
  text-decoration: none;
  font-size: 16px;
  background: #0a94d5;
  color: #fff;
  border-radius: 4px;
  text-align: center;
  height: 35px;
  line-height: 35px;
  transition: all 0.2s ease, transform 0.1s ease;
}
.button.ok:hover {
  background: #0a94d5dd;
}
.button.ok:active {
  transform: scale(0.95);
}
#login-error {
  width: 700px;
  margin: 0 auto;
  margin-bottom: 20px;
  background: white;
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0px 3px 5px #0a94d526;
  color: #0a94d5;
}

.hidden-submit {
  display: none;
}
.logo-32bit {
  background-image: url("../img/minilogo.png");
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 35px;
  margin: 0 auto;
  margin-bottom: 20px;
}
@media (max-width: 885px) {
  .info {
    display: none;
  }
  .login-container {
    width: 400px;
    height: 380px;
  }
  #login-error {
    width: 400px;
  }
}
@media (max-width: 450px) {
  .login-container {
    width: 90%;
  }
  #login-error {
    width: 90%;
  }
  .login {
    width: 100%;
  }
  h3 {
    font-size: 16px;
  }
}
