* {
  -ms-box-sizing: "border-box";
  box-sizing: "border-box";
}

html,
body {
  font-family: "Montserrat", sans-serif;
  height: 100%;
  width: 100%;
}

.site-header {
  align-items: center;
  background-color: #ffffff;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  left: 0px;
  height: 70px;
  padding: 0px 2.5%;
  position: fixed;
  top: 0px;
  width: 100%;
}

.site-header .site-nav ul {
  align-items: center;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.site-header .site-nav ul li {
  padding-left: 10px;
  padding-right: 10px;
}

.site-header .site-nav ul li a {
  display: block;
  color: #666666;
  font-weight: bold;
  transition: all 0.3s ease;
}

.site-header .site-nav ul li a:hover,
.site-header .site-nav ul li a:active {
  color: #e76003;
}

.site-main {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  height: 100%;
  overflow-x: hidden;
  width: 100%;
}

.loader {
  align-items: center;
  background-color: rgba(255, 255, 255, 0.4);
  display: none;
  flex-flow: column wrap;
  height: -ms-calc( 100% - 70px );
  height: calc( 100% - 70px );
  justify-content: center;
  left: 0px;
  position: absolute;
  top: 70px;
  width: 100%;
  z-index: 1000;
}

.login-form {
  margin: 0px auto;
  position: relative;
  text-align: center;
  width: 500px;
}

.login-form .title {
  border-bottom: 1px solid #dedede;
  font-weight: bolder;
  margin-bottom: 20px;
  padding-bottom: 20px;
  text-transform: uppercase;
}

.login-form label {
  color: #666666;
  margin-bottom: 0px;
}

.login-form .form-control {
  text-align: center;
}

.login-form .form-group.errors {
  color: #e3342f;
  font-size: 14px;
}

.login-form .btn-primary {
  text-align: center;
  width: 100%;
}

