html, body {
  height: auto;
  display: inherit;
}

main {
  height: 100vh;
  position: relative;
  flex: 1;
  background-size: cover;
  background-position: center;
}

main .login-overlay {
  height: calc(100% - 95px);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

main .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

main h1 {
  font-size: 4em;
  font-weight: bolder;
  color: white;
  margin: 0;
  margin-bottom: 10px;
  text-align: center;
}

main em {
  display: block;
  font-size: 2em;
  color: white;
  letter-spacing: .01em;
  font-style: normal;
  margin-bottom: 40px;
  text-align: center;
}

main .log-in-card {
  background: white;
  padding: 30px 60px;
  border-radius: 15px;
  width: 350px;
  margin: 30px 15px;
}

main .log-in-card img.title {
  height: 2.5em;
  display: block;
  margin: auto;
  margin-bottom: 30px;
}

main .url {
  display: none;
  text-align: center;
  margin-bottom: 30px;
}

main .qrcode-wrapper {
  text-align: center;
  margin-bottom: 30px;
}

main .url a {
  font-size: 1em;
}

main .qrcode {
  display: inline-block;
  padding: 15px;
  background: white;
  border-radius: 5px;
  margin-bottom: 30px;
}

main .qrcode img {
  width: 250px;
  height: 250px;
}

@media (max-width: 768px) {
  main .log-in-card {
    width: auto;
  }
  main .url {
    display: block;
    margin-bottom: 7em;
  }
  main .url h1 {
    letter-spacing: inherit;
    font-size: 2.2em;
    margin-bottom: 0;
    line-height: 1em;
    margin-bottom: .3em;
  }
  main .url em {
    letter-spacing: inherit;
    font-size: 1.8em;
    margin-bottom: 1.5em;
  }
  main .qrcode-wrapper {
    display: none;
  }
}

.no-wallet-config {
    font-size: 0.9em;
    line-height: 1.2em;
    word-break: break-word;
    text-align: center;
    margin: 0;
    margin-bottom: 1.5em;
    color: white;
}

.no-wallet-config span {
  position: relative;
}

.no-wallet-config span:before {
  position: absolute;
  left: calc(-70% - 1em);
  top: 50%;
  content: '';
  display: block;
  width: 70%;
  border-top: 1px solid white;
}

.no-wallet-config span:after {
  position: absolute;
  right: calc(-70% - 1em);
  top: 50%;
  content: '';
  display: block;
  width: 70%;
  border-top: 1px solid white;
}

.redirect-store-config {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.store-button {
    background: none;
    border: none;
    padding: 0;
}

#mainBox {
  margin-top: 90px;
}

.container {
  opacity: 100%;
    width: 350px;
    border: 1px solid #ccc;
    border-radius: 25px;
    text-align: center;
    background: white;
}

#newLoginForm {
  width: auto!important;
}

#newLoginForm label {
  display: block;
  font-weight: bolder;
  margin-bottom: 5px;
  letter-spacing: .03em;
}

#newLoginForm input {
  display: block;
  width: calc(100% - 30px);
  margin: 0;
  margin-bottom: 15px;
  font-size: 1em;
  padding: 10px 15px;
}

#newLoginForm button {
  background: #39a8d6;
  width: 100%;
  font-weight: bold;
  font-size: 1em;
  margin-top: 15px;
}

#loginResult {
  text-align: center;
}

footer.client-login {
  padding: 40px 0;
  background: white;
  font-size: 12px;
  border-top: 1px solid #eee;
}

footer.client-login .links {
  display: inline-block;
  float: right;
}

footer.client-login a {
  display: inline-block;
  font-weight: bold;
  padding-left: 60px;
  line-height: 1.5em;
}

@media (max-width: 768px) {
  footer.client-login {
    text-align: center;
  }

  footer.client-login .links {
    display: block;
    float: none;
  }

  footer.client-login a {
    display: block;
    padding: 0;
  }
}

input[type="email"],
input[type="password"] {
    width:70%;
    display: block;
    margin: 10px auto;
    margin-bottom: 15px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    width:75%;
    padding: 10px;
    background-color: #000000;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

#loginResult {
  opacity: 0;
  padding: 1em 0;
}
#loginResult.error {
  opacity: 1;
  color: red;
}
#loginResult.success {
  opacity: 1;
  color: green;
}


h1 {
    color: var(--White, #FFF);
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Roboto;
    font-size: 65px;
    font-style: normal;
    font-weight: 500;
    line-height: 81px;
    margin-top: 20px;
}

.faq {
  background: #f7f7f9;
  text-align: center;
  padding: 88px 15px;
}

.faq h2 {
  font-size: 3.5em;
  line-height: 1em;
  margin: 0;
  margin-bottom: 82px;
  color: rgb(32, 38, 66); /* Purple color */
}

.faq-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 82px 60px; /* Increased gap between columns */
}

.faq-item {
  width: 45%;
  text-align: left;
}

@media (max-width: 768px) {
  .faq-item {
    width: auto;
    text-align: center;
  }
}

.faq-item h3 {
  line-height: 1.3em;
  margin: 0;
  margin-bottom: 24px;
}

.faq-item p {
  font-size: 16px;
}
