* {
  box-sizing: border-box;
  }

  body {
  font-family: "Roboto", Arial, sans-serif; /* Suggested font */
  margin: 0;
  padding: 0;
  }

  .banner {
  background-color: #333;
  padding: 10px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  }

  .container {
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
  }

  .logo {
  width: 100px;
  height: 99.8px;
  display: block;
  margin: 0 auto 20px;
  }

  .form-container {
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 20px;
  text-align: center;
  }

  .input-container {
  margin-bottom: 20px;
  position: relative;
  /* Add this line */
  }

  .input-container label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  text-align: left;
  }

  .input-container input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  font-style: italic;
  }

  .input-container .warning {
  /* Add this block */
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  font-size: 12px;
  color: #ff0000;
  text-align: left;
  font-style: italic;
  display: none;

  }

  .input-container.warning input,
  .input-container.warning input:focus {
  border-color: #ff0000;
  outline: none;
  }

  .note-box {
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  margin-top: 20px;
  font-size: 12px;
  text-align: center;
  }

  .submit-button {
  background-color: #337ab7;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 8px;
  }

  .submit-button:hover {
  background-color: #23527c;
  }

  /* Styles for the welcome pop-up */
  .welcome-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }

  .welcome-content {
  background-color: #fff;
  padding: 2em;
  border-radius: 5px;
  max-width: 400px;
  text-align: center;
  }

  .welcome-logo {
  margin-bottom: 1em;
  }

  .welcome-logo img {
  width: 169px;
  height: 169.66px;
  margin-right: 0.5em;
  }

  .welcome-heading {
  margin-top: 0;
  font-size: 24px;
  }

  .welcome-description {
  margin-top: 0;
  font-size: 16px;
  color: #333;
  }

  .welcome-close-button {
  background-color: #337ab7;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 0.5em 1em;
  margin-top: 1em;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  }

  .welcome-close-button:hover {
  background-color: #23527c;
  }

  .loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }

  .loader-content {
  background-color: #fff;
  padding: 4em;
  border-radius: 5px;
  max-width: 400px;
  text-align: center;
  }

  .loader-spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #337ab7;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
  margin: 0 auto;
  }

  @keyframes spin {
  0% {
      transform: rotate(0deg);
  }

  100% {
      transform: rotate(360deg);
  }
  }

  .loader-text {
  margin-top: 2em;
  font-size: 18px;
  color: #333;
  }