html,body{
    height: 100%;
}
.login-body {
     background-image: url("../../images/ambulance.jpg") !important;
     background-size: cover;
     background-position: center center;
     background-attachment: fixed;

     display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

#btnLogin{
    width: 100%;
}

#btnLogin{
    color: white;
    height: 50px;
    background-color: #ab0f01;
    border-radius: 30px;
}

#medicalKit{
    width: 180px;
}

.errornote{
    color: red;
}

.panel{
    text-align: center;
}

.main-div {
    background: #ffffff none repeat scroll 0 0;
    border-radius: 2px;
    margin: 10px auto 30px;
    padding: 50px 70px 0px 71px;
    margin-bottom: 0px;
    margin-top: 0px;

}

.panel h2{
    font-size:18px;
    margin-top: 10px !important;
    font-weight: bold !important;
    color: #397eca !important;
}

.panel p {
    color: #397dca;
    font-size:14px;
    line-height:24px;
}

.forgot{
    text-align: center;
    margin-bottom: 1px;
    margin-top: 15px;
}

.forgot a {
    color: #777777;
    font-size: 14px;
    text-decoration: none;
}

.logo-sem{
    width: 150px;
    height: 150px;
    margin-left: 30px;
    background-color: #397cca;
    border-radius: 89px;
}

.login-form .form-group {
    margin-bottom:10px;
}
.login-form{
    text-align:center;

}

.login-form .form-control {
    background: #f7f7f7 none repeat scroll 0 0;
    border: 1px solid #d4d4d400;
    border-radius: 30px;
    font-size: 14px;
    height: 50px;
    line-height: 50px;
}

.has-search .form-control {
    padding-left: 2.375rem;
}

.has-search .form-control-feedback {
    position: absolute;
    z-index: 2;
    display: block;
    width: 1.2em;
    height: 1.2em;
    line-height: 2.375rem;
    text-align: center;
    pointer-events: none;
    color: #ab0f01;
    margin: 15px;
}

#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
  height: 100%;
  width: 100%;
  background: #fff;
  display: flex;
}
.loader{
  margin: auto;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  position: relative;
}
.loader:before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #000;
  border-radius: 50%;
  opacity: 0;
  animation: popin 1.5s linear infinite 0s;
}
.loader:after{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #000;
  border-radius: 50%;
  opacity: 0;
  animation: popin 1.5s linear infinite 0.5s;
}

@keyframes popin{
  0%{
      opacity: 0;
      transform: scale(0);
  }
  1%{
      opacity: 0.1;
      transform: scale(0);
  }
  99%{
      opacity: 0;
      transform: scale(2);
  }
  100%{
      opacity: 0;
      transform: scale(0);
  }
}
