html, body {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  font-family: sans-serif;
}

.navbar {
  position: static !important;
}

body {
  background-color: #f1f1f1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
body h1 {
  text-align: center;
  color: #004085;
  font-size: 28px;
  margin: 20px auto;
  text-transform: uppercase;
}

.login-box {
  background-color: transparent;
  max-width: 400px;
  width: 100%;
  margin: 0;
  text-align: center;
  padding: 10px;
}
.login-box .logo-wrapper img {
  width: 150px;
  margin: 1rem 0;
}
.login-box .sc-input-group {
  background-color: white;
  padding: 5px 0;
  border: solid 1px #ddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.login-box .sc-input-group input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 5px;
  margin-right: 44px;
  color: #004085;
  font-weight: bold;
}
.login-box .sc-input-group i {
  color: #004085;
  padding: 0 10px;
}
.login-box .sc-input-group.username {
  border-radius: 10px 10px 0 0;
}
.login-box .sc-input-group.password {
  border-radius: 0 0 10px 10px;
}
.login-box input {
  text-align: center;
  outline: none;
  font-size: 18px;
  border: none;
}
.login-box #message {
  margin: 6px 0;
}
.login-box .ccbtn {
  color: #fff !important;
  text-transform: uppercase;
  text-decoration: none;
  background: #ff0000;
  margin: 10px;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  border: none;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  cursor: pointer;
}
.login-box .ccbtn:hover {
  background: #002752;
  -webkit-box-shadow: 0px 5px 40px -10px rgba(0, 0, 0, 0.57);
  box-shadow: 5px 40px -10px rgba(0, 0, 0, 0.57);
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

footer h4 {
  font-size: 14px;
  text-align: center;
  margin: 15px auto;
  padding: 7px 14px;
  border: dashed 1px #444;
  border-radius: 10px;
  max-width: 220px;
  width: 100%;
  background-color: #f1f1f1;
}
footer a {
  text-decoration: none;
  color: red;
}