body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background: url('https://my.nsbashland.com/images/fi-assets/northern-state-bank/northern-state-bank-background-landscape-fc348587.png') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
}
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  border-radius: 20px;
}

.main-container {
    background-color: #1f2021;
    border-radius: 10px;
    padding: 10px 60px 0px;
    padding-bottom: 60px;
    width: 480px;
    box-sizing: border-box;

}
.top-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px
}
.input-box {
  margin: 20px 0 10px;
  width: 100%;
  border: 1px solid grey;
  padding: 18px 12px;
  box-sizing: border-box;
  background-color: #1f2021;
  border-radius: 4px;
  font-size: 16px;
  color: white;
}
.forgot-link {
  text-align: right;
  margin-bottom: 20px;
}

.forgot-link a {
  color: #fdd835;
  font-size: 14px;
  font-family: sans-serif;
  text-decoration: none;
}

.continue-btn {
  background-color: #800020;
  color: white;
  border: none;
  width: 120px;
  padding: 15px 12px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
}

.enroll-link {
  margin-top: 20px;
  font-size: 14px;
  font-family: sans-serif;
  color: #fdd835;
}

.enroll-link a {
  color: #fdd835;
  text-decoration: none;
}
.button-section {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

footer {
  text-align: center;
  padding: 15px;
  font-size: 13px;
  font-family: sans-serif;
  background-color: #1f2021;
  color: grey;
}

footer a {
  color: #fdd835;
  text-decoration: none;
}

@media (prefers-color-scheme: light) {
  body {
    color: #000;
  }

  .main-container {
    background-color: #f5f5f5;
  }

  .input-box {
    background-color: white;
    color: black;
    border: 1px solid #ccc;
  }

  .forgot-link a,
  .enroll-link,
  .enroll-link a,
  footer a {
    color: #8f7338;
  }

  .continue-btn {
    background-color: #8f7338;
    color: white;
  }

  footer {
    background-color: #e0e0e0;
    color: #333;
  }
}
#waitPage {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  flex-direction: column;
  font-family: sans-serif;
  font-size: 1.2em;
  color: white;
  backdrop-filter: blur(6px);
}

#waitPage::before {
  content: "";
  width: 50px;
  height: 50px;
  border: 6px solid rgba(255, 255, 255, 0.3);
  border-top: 6px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 15px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (prefers-color-scheme: light) {
  #waitPage {
    background-color: rgba(255, 255, 255, 0.8);
    color: #333;
  }

  #waitPage::before {
    border: 6px solid rgba(0, 0, 0, 0.2);
    border-top: 6px solid #8f7338;
  }
}
