html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  color: #00568b;
}

.water-mark {
  position: fixed;
  width: 350px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: center;
}

  .water-mark > .logo {
    width: 100%;
    max-height: 100%;
    vertical-align: middle;
    opacity: 0.15;
  }

.print-header > img {
  max-width: 100%;
}

.print-footer > img {
  max-width: 100%;
}

.print-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: 50px;
}

.print-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: 5rem;
}

@media print {
  @page {
    margin: 2rem 0rem;
  }
}
/* desktop */
@media only screen and (min-width: 1200px) {
  .water-mark {
    max-width: 350px;
  }
}

/* tablet */
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .water-mark {
    max-width: 350px;
  }
}

/* mobile */
@media only screen and (max-width: 767px) {
  .water-mark {
    max-width: 250px;
  }
}

/* Login */

.login-section {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 90vh;
  min-width: 300px;
}

  .login-section form {
    width: 100%;
  }

  .login-section .form-control {
    background-color: #F3F4F5 !important;
    border: none;
    border-radius: 10rem;
    padding: .8rem 1.5rem;
    font-weight: 200;
    font-size: 0.8rem;
  }

  .login-section .btn-primary{
    background-color: #00568b;
    border-radius: 10rem;
    height: 3rem;
    font-weight: 200;
    font-size: 0.8rem;
  }

  .login-section .form-group {
    text-align: left;
  }

    .login-section .form-group .text-danger {
      font-size: 0.8rem;
      font-weight: 200;
    }
