* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: clip;
}

.disclaimer-top {
  background-color: #002b5f;
  color: white;
  padding: 10px;
  text-align: center;
}

.disclaimer-top p {
  margin: 5px 0;
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-text {
  text-align: left;
  margin-bottom: 40px;
}

.disclaimer-text p {
  margin-bottom: 20px;
}

.checkbox-container {
  margin-top: 20px;
}

.logo-container {
  text-align: center;
  margin-bottom: 30px;
}

.logo {
  width: 300px;
  height: auto;
  margin: 20px 0;
}

.enter-button {
  background-color: #0066cc;
  color: white;
  padding: 10px 40px;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s;
  text-transform: uppercase;
}

.enter-button:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}

.enter-button:hover:not(:disabled) {
  background-color: #0052a3;
}

.footer {
  background-color: #002b5f;
  padding: 20px;
  width: 100%;
}

.footer-links {
  display: flex;
  justify-content: space-around;
  gap: 100px;
  max-width: 800px;
  margin: 0 auto;
}

.footer-link {
  color: white;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

.reference {
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9em;
  color: #666;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.reference-left {
  text-align: left;
}

.reference-right {
  text-align: right;
}

.iframe-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  z-index: 1000;
}

.iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.hidden {
  display: none !important;
}

.greyBtn {
  background: #e0e0e0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 5px;
  align-items: center;
  padding: 11px 30px;
  border: 1px solid #fff;
  border-radius: 200px;
  color: white;
  width: 220px;
  cursor: no-drop;
  margin: 1.5rem 1.2rem 1.2rem 2.4rem;
}

#buttonContainer {
  cursor: auto;
}

.greyBtn p {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  font-style: inherit;
}

.termsContainer {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.termsContent {
  padding: 3em 0;
  max-width: 800px;
}

.termsContent ol {
  list-style-type: decimal;
  margin-left: 20px;
}

.termsContent li {
  padding: 1em 0;
}

.welcomeMessage {
  padding: 1em 0;
}

@media only screen and (min-width: 1000px) {
  #buttonContainer {
    width: 1000px;
  }
}

.outherBtnCont {
  height: 100px;
  cursor: none;
}

@media only screen and (max-width: 768px) {
  body {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .main-content {
    width: 100%;
    padding: 10px 20px;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer-link {
    text-align: center;
  }
  .disclaimer-top {
    padding: 10px 20px;
  }

  .termsContent {
    padding: 2em 0;
    max-width: 350px;
  }
}
