/* Botbar Styles */
.botbarContainer {
  margin-top: 1rem;
  padding: 2rem 1rem;
  background-color: rgb(0, 117, 178);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: white;
  gap: .75rem;
}

.botbarContainer a {
  color: white;
  padding: .5em 0;
}

/* Logo Styles */
.logoContainer {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
  background-color: #fff;
  border-radius: 10px;
  align-items: center;
}

.logoIconContainer {
  height: 4rem;
  width: 4rem;
}

.logo_text_container {
  display: flex;
  flex-direction: column;
}

.logoText {
  font-weight: 700;
  font-size: 3rem;
  line-height: 3rem;
  color: #000
}

.logoText > span{
  color: var(--primaryColor);
}