body {
    font-family: 'Titillium Web', sans-serif;
    line-height: 28px;
    position: absolute;
    width: 800px;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #444e7d;
    font-weight: 300;
    font-size: 16px;
}

.login-form ul {
  padding: 0;
  text-align: center;
}

.login-box {
  position: relative;
  margin: 0px auto;
  width: 100%;
  background: #fff;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  padding-bottom: 0px;
  -webkit-box-shadow: 2px 2px 5px #333;
  -moz-box-shadow: 2px 2px 5px #333;
  box-shadow: 2px 2px 5px #444e7d;
}

#home .topHeader, #login-block .topHeader {
  text-align: right;
  position: absolute;
  float: right;
  width: 100%;
}

.login-logo{
    display: inline-block;
    width: 50%;
    vertical-align: top;
    border-right: 1px solid #444e7d;
    padding: 68px 0;
}
.login-logo a{
    width: 323px;
    display: block;
    margin: 2px auto;
}
.login-logo img {
  width: 200px;
  margin: auto;
  display: block;
}

.login-form {
  display: inline-block;
  width: 40%;
  margin: 125px 35px;
}

h3 {
  color: #444e7d;
  text-align: center;
  font-size: 1.5em;
  opacity: 1;
  font-weight: normal;
  margin: 0 auto 35px;
}

.btn-login{
  background: #444e7d;
  color:#fff;
  height: 50px;
  font-size: 22px;
  width: 350px;
}

.btn.btn-tracking {
  width: 180px;
  display: block;
  margin: 20px auto 20px;
  color: white !important;
  text-transform: uppercase;
  text-shadow: 1px 2px 2px #444e7d;
  background: #444e7d;
  border: 1px solid #444e7d;
  -webkit-box-shadow: inset 0 1px 2px #444e7d;
  -moz-box-shadow: inset 0 1px 2px #444e7d;
  box-shadow: inset 0 1px 2px #444e7d;
  -webkit-transition: background .5s ease-in-out;
  -moz-transition: background .5s ease-in-out;
  -o-transition: background .5s ease-in-out;
  transition: background .5s ease-in-out;
  border-radius: 5px;
  padding: 4px;
}

a {
  text-decoration: none;
  color: #fff;
}

footer{
    text-align: right;
    margin-top: 40px;
    color: #CCC;
}


#footer-text, #footer-text a {
  text-align: center;
  color: #FFF;
  text-shadow: 1px 1px 1px #000;
}

/*** login form **/
.login-wrapper {
  display: inline-block;
  width: 45%;
  margin: 110px 15px;
}

.input-field {
  display: block;
  width: 95%;
  padding: 8px 0 8px 15px;
  margin-bottom: 15px;
}

.btn-submit {
  background: #28a745;
  text-transform: uppercase;
  color: #fff;
  width: 100%;
  height: auto;
  font-size: 18px;
  border: none;
  margin: 10px auto;
  padding: 8px 15px;
  display: block;
  float: right;
  margin: 0;
}


.alert {
  position: relative;
  padding: .75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
  border-radius: .25rem;
}
.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}