html {
  font-size: 14px;
}

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

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

body {
  margin-bottom: 60px;
  background-color: rgb(34, 51, 95);
}

main {
  padding: 10px;
  margin: 0 auto;
  max-width: 640px;
  height: 100vh;
  background-color: white;
  border-radius: 5px;
}

main .login {
  height: 450px;
  background-image: url(../img/login-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
}

main .form {
  width: 300px;
  margin: 10px auto;
}

main .btn-login {
  width: 83%;
  margin-top: 20px;
  color: #fff;
  background-color: #0a5c49;
}

main .btn-login:hover {
  color: #fff;
}

@media (max-width: 576px) {
  main .login {
    height: 260px;
  }

  main .btn-login {
    width: 100%;
  }
}

.user-register,
.user-login {
  margin: 10px auto;
  text-align: center;
}

.user-register legend,
.user-login legend {
  font-weight: bold;
  font-size: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* ----- Validation and error messages class starts -----*/

.validation-summary-errors {
  border: 1px solid #b08b34;
  background: transparent url(../img/WarningHeader.gif) no-repeat 12px 30px;
  padding: 0px 0px 13px 0px;
  font-size: 12px;
  width: 99%;
}

.validation-header {
  left: 0px;
  position: relative;
  font-size: 11px;
  background-color: #e5d9bd;
  color: #56300a;
  height: 14px;
  font-weight: bold;
  border-bottom: 1px solid #b08b34;
  padding-top: 3px;
}

.validation-summary-errors ul {
  padding-top: 5px;
  padding-left: 45px;
  list-style: none;
  font-size: 11px;
  color: #982b12;
  font-style: italic;
}

.validation-summary-errors ul li {
  padding: 2px 0px 0px 15px;
  background-image: url(../img/Warning.gif);
  background-position: 0px 3px;
  background-repeat: no-repeat;
}

/* -- --Validation and error messages class ends -- --*/

/*----- bootstrap table -----*/

.fixed-table-container {
  overflow: hidden !important;
}

.fixed-table-body {
  height: auto !important;
}

.table-caption {
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 5px;
}