#loaderWrap {
  display: none;
  align-items: center;
  justify-content: center;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40001;
}
#loaderWrap .loaderOverlay {
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 40001;
}
#loaderWrap .vertical-offset {
  z-index: 40002;
}
#loaderWrap .vertical-offset .loaderBox {
  max-width: 550px;
  margin: 0 auto;
  position: relative;
  top: 0;
  left: 0;
  transform: translateY(20%);
  position: relative;
}
#loaderWrap .vertical-offset .loaderBox .loader {
  margin: auto;
  border: 20px solid #3645b6;
  border-radius: 50%;
  border-top: 20px solid #eaf0f6;
  width: 200px;
  height: 200px;
  animation: spinner 4s linear infinite;
}

@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Nav Overrides */
.nav-item {
  width: 33.33%;
}
.nav-item a {
  background-color: #83858c;
  color: #ffffff;
  font-size: 14px;
  border-radius: 0;
  font-weight: bold;
  letter-spacing: 0.5px;
}
.nav-item a:hover {
  background-color: rgb(149, 153, 160);
}

.nav-mobile {
  background-color: #3645b6;
}

@media only screen and (min-width: 320px) and (max-width: 768px) {
  .nav {
    background: #3645b6;
  }
}
h1 {
  border-bottom: 2.5px solid #83858c;
  color: #83858c;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: normal;
  text-transform: uppercase;
  font-size: 24px;
}

h2 {
  border-bottom: 2.5px solid #83858c;
  color: #83858c;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: normal;
  text-transform: uppercase;
  font-size: 20px;
}

#content a {
  color: #83858c;
  text-decoration: underline;
}
#content a:hover {
  color: rgb(149, 153, 160);
  text-decoration: none;
}
#content a.landingLinks {
  align-items: center;
  background: #3645b6;
  box-shadow: 5px 5px 3px #ccc;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  font-weight: bold;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.15s ease-in-out;
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 1.5em;
  margin: 20px 0;
  min-height: 145px;
  padding: 25px;
}
#content a.landingLinks:hover {
  box-shadow: 5px 5px 3px #919d9d;
  transform: translateY(-3px);
  transition: all 0.1s ease-out;
}
#content a.landingLinks:active {
  box-shadow: 3px 3px 3px #919d9d;
  transform: translateY(1px);
  transition: all 0.1s ease-in;
}
#content a.landingLinks p {
  margin: 0;
}

input[type=button],
input[type=submit],
button {
  font-weight: 700;
  font-size: 16px;
  padding: 10px 15px;
  align-items: center;
  background: #3645b6;
  box-shadow: 5px 5px 3px #ccc;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  font-weight: bold;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.15s ease-in-out;
}
input[type=button]:hover,
input[type=submit]:hover,
button:hover {
  box-shadow: 5px 5px 3px #919d9d;
  transform: translateY(-3px);
  transition: all 0.1s ease-out;
}
input[type=button]:active,
input[type=submit]:active,
button:active {
  box-shadow: 3px 3px 3px #919d9d;
  transform: translateY(1px);
  transition: all 0.1s ease-in;
}

.error {
  color: #ff0000;
}

#errorMsg {
  color: #ff0000;
  font-style: italic;
  font-weight: bold;
}

#memberInfoDump {
  display: none;
  width: fit-content;
}
#memberInfoDump table {
  border-collapse: collapse;
}
#memberInfoDump td,
#memberInfoDump th {
  border: 1px solid #000000;
}
#memberInfoDump tr:nth-child(even) {
  background-color: #dcdcdc;
}
#memberInfoDump .button-container {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

#logoutForm {
  display: flex;
  justify-content: flex-end;
}
#logoutForm form {
  margin: 0;
}
