@font-face {
  font-family: "Lato-Bold";
  src: url('../fonts/Lato/Lato-Bold.ttf');
}

.navbar-brand {
  height: 80px;
}

.fonttest{
  font-family:"Lato-Bold";
}

.container {
  position: relative;
  margin: 0 auto;
}
.spacer{
  display: block;
  min-height: 30px;
}
.container:before, .container:after {
  content: "";
  display: block;
  clear: both;
}
.btn-acs{
    margin-top: 6px;
}

.green{
  font-family: "Lato-Bold";
  float: right;
  color: white;
  background-color: #4a9f1f;
  border-radius: 25px;
  min-width: 100px;
  margin-top: 20px;
}
.btn.green{
  margin-top: 20px;
}
.green-inv{
  color: #4a9f1f;
  background-color: #ffffff;
}
.white{
  color: #ffffff;
}

.brand-image{
  height: 100%;
}

.navbar-fid-lightgrey{
  background-color: #f2f2f2;
}
.navbar-brand{
  padding: 0px;
}

.img-container{
  width: 1150px;
  padding: 8% 0 0;
  margin: auto;
}

.image-center {
  height: 100%;
  width: 100%;
  background-image: url('../images/login-bg.jpg');
  background-repeat: no-repeat;
}

.form {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin: 0 auto 100px;
  padding: 45px;
  text-align: center;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}
.form .field {
  outline: 0;
  background: #f2f2f2;
  color: black;
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 14px;
}
.form .submit-btn {
  text-transform: uppercase;
  outline: 0;
  background: #4CAF50;
  width: 100%;
  border: 0;
  padding: 15px;
  color: #FFFFFF;
  font-size: 14px;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
  cursor: pointer;
  border: 1px solid white;
}
.form .submit-btn:hover,.form .submit-btn:active,.form .submit-btn:focus {
  background: #43A047;
}
.form .message {
  margin: 15px 0 0;
  color: #b3b3b3;
  font-size: 12px;
}
.form .message a {
  color: #FFFFFF;
  font-weight: 500;
  text-decoration: none;
}
.form .register-form {
  display: none;
}

.close{
 position: relative;
 top: -45px;
 left: 10px;
color: #1cd8ad;
opacity:0.75;
}

.close:focus, .close:hover {
    color: #39e8b0;
 opacity: 1;
 text-decoration: none;
 outline:0;
}

.desktop{
  display: none;
}
.mobile{
  display: block;
}

.login-page {
  float: right;
}

.alert{
	height: 100px;
    background: black;
    opacity: 0.65;
    padding: 10px;
}
.alert h4{
	color:red;
}
.alert__text{
	color:red;
}

/* Start by setting display:none to make this hidden.
   Then we position it in relation to the viewport window
   with position:fixed. Width, height, top and left speak
   for themselves. Background we set to 80% white with
   our animation centered, and no-repeating */
.loader {
  display:    none;
  position:   fixed;
  z-index:    2000;
  top:        0;
  left:       0;
  height:     100%;
  width:      100%;
  background: rgba( 0, 0, 0, .5 )
  /*url('../images/loader.gif')*/
  50% 50%
  no-repeat;
}

/* When the body has the loading class, we turn
   the scrollbar off with overflow:hidden */
body.loading .loader {
    overflow: hidden;
}

/* Anytime the body has the loading class, our
   modal element will be visible */
body.loading .loader {
    display: block;
}

@media (max-width: 768px){
  .login-page {
    width: 300px;
    padding: 0% 0 0;
  }

}
@media (min-width: 768px) and (max-width: 900px) {
  .desktop{
    display: block;
  }
  .mobile{
    display: none;
  }
  .login-page {
    width: 450px;
  }

}
@media (min-width: 900px) {
  .login-page {
    width: 450px;
  }
  .desktop{
    display: block;
  }
  .mobile{
    display: none;
  }

}
