body {
  font-family: Arial, Helvetica, sans-serif;
}

h1 {
  text-transform: uppercase;
  font-weight: 500;
  line-height: normal;
  color: #000000;
  padding: 20px;
  letter-spacing: 1px;
  font-size: 24px;
  margin-bottom: 10px;
  border-left: 0px solid;
  text-align: center;
}

h2 {
  text-transform: uppercase;
  font-weight: 500;
  line-height: normal;
  color: #000000;
  padding: 20px;
  letter-spacing: 1px;
  font-size: 20px;
  border-bottom: 1.5px solid #000000;
  margin: 0px 0px 10px;
}

button,
input[type=submit] {
  font-size: 16px;
  font-weight: 700;
  align-items: center;
  background: #30195d;
  border-radius: 3px;
  border: none;
  box-shadow: 5px 5px 3px #919d9d;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 5px 0;
  padding: 10px 20px 11px;
  text-align: center;
  text-decoration: none;
}
button:hover,
input[type=submit]:hover {
  color: #ffffff;
  text-decoration: none;
  background: rgb(52.1491525424, 27.1610169492, 101.0389830508);
  transition: all 0.1s ease-out;
  transform: translateY(-3px);
  box-shadow: 7px 7px 3px #919d9d;
}
button:active,
input[type=submit]:active {
  background: rgb(52.1491525424, 27.1610169492, 101.0389830508);
  transition: all 0.1s ease-in;
  transform: translateY(1px);
  box-shadow: 3px 3px 3px #919d9d;
}

.landingSection {
  margin-top: 20px;
}

#content a.landingLinks {
  align-items: center;
  background: #30195d;
  border-radius: 3px;
  border: none;
  box-shadow: 5px 5px 3px #919d9d;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 5px 0;
  padding: 10px 20px 11px;
  text-align: center;
  text-decoration: none;
  font-size: 22px;
  margin: 20px 0;
  padding: 40px;
  letter-spacing: 1px;
}
#content a.landingLinks:hover {
  color: #ffffff;
  text-decoration: none;
  background: rgb(52.1491525424, 27.1610169492, 101.0389830508);
  transition: all 0.1s ease-out;
  transform: translateY(-3px);
  box-shadow: 7px 7px 3px #919d9d;
}
#content a.landingLinks:active {
  background: rgb(52.1491525424, 27.1610169492, 101.0389830508);
  transition: all 0.1s ease-in;
  transform: translateY(1px);
  box-shadow: 3px 3px 3px #919d9d;
}
#content a {
  color: #000000;
  text-decoration: underline;
}
#content a:hover {
  color: rgb(12.75, 12.75, 12.75);
  text-decoration: underline;
}
#content #memberInfoDump {
  display: none;
  border: none;
  border-collapse: collapse;
  min-width: 100%;
}
#content #memberInfoDump th {
  border: 1px solid #000000;
  text-align: center;
  padding: 10px;
}
#content #memberInfoDump tr td {
  border: 1px solid #000000;
  padding: 10px;
}
#content #adminSubmit {
  display: none;
}

#logoutForm {
  text-align: right;
  padding-top: 15px;
  float: right;
}

.button {
  color: #ffffff;
  background: #30195d;
  box-shadow: 5px 5px 3px #919d9d;
  font-size: 16px;
  border-radius: 3px;
  font-weight: 700;
  line-height: 1;
  margin: 5px 0;
  padding: 10px 20px 11px;
  text-align: center;
  border: none;
  cursor: pointer;
}
.button:hover {
  background: rgb(52.1491525424, 27.1610169492, 101.0389830508);
  transition: all 0.1s ease-out;
  transform: translateY(-3px);
  box-shadow: 7px 7px 3px #919d9d;
}
.button:active {
  background: rgb(52.1491525424, 27.1610169492, 101.0389830508);
  transition: all 0.1s ease-in;
  transform: translateY(1px);
  box-shadow: 3px 3px 3px #919d9d;
}

#errorMsg {
  text-align: center;
  color: #cc0000;
  font-weight: bold;
  font-style: italic;
}

.adminNav {
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.adminLogout {
  margin-left: 15px;
}

#adminForm {
  margin: 0;
  display: flex;
  align-items: center;
}

#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 #30195d;
  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);
  }
}
