body {
  margin: 0;
  font-size: 18px;
  font-family: "Inter", sans-serif;
}

.bqs-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #5E9CC7;
  opacity: 0.5;
  z-index: 1;
}

.bqs-body {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 40px);
  padding: 20px 0;
}

.bqs-body::before {
  content: "";
  background-image: url('../img/background.png');
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  opacity: 0.50;
}

.bqs-form-container {
  position: relative;
  width: 700px;
  margin-left: auto;
  margin-right: auto;
  background: #FFF;
  border-radius: 20px;
  box-shadow: 5px 5px #848484;
  z-index: 2;
}

.bqs-form {
  position: relative;
  padding: 10px 0;
  background: #FFF;
  border-radius: 20px;
  z-index: 2;
}

.bqs-form-sm {
  padding: 5px;
}

.bqs-form iframe {
  min-width: 100%;
  height:425px;
  border:none;
}

.bqs-form-header {
  text-align: center;
  padding: 20px;
  border-radius: 20px;
}

.bqs-form-header-logo {
  margin-top: 20px;
}

.bqs-form-header-logo img {
  width: 55%;
}

.bqs-form-header-logo-sm img {
  width: 45%;
}

.bqs-form-header-text {
  display: none;
  color: #707070;
  text-align: center;
  margin-top: 40px;
}

.bqs-form-header-text i {
  font-style: normal;
}

.bqs-form-footer {
  padding: 20px;
  text-align: center;
  border-radius: 20px;
}

.bqs-form-footer-text {
  font-size: smaller;
  color: #707070;
}

.bqs-form-footer-logos {
  margin-top: 15px;
  
}

.bqs-form-footer-logos img {
  height: 22px;
  margin: 10px 15px;
}

.page-404 {
  padding-top: 100px;
  text-align: center;
}

.page-404-img-container,
.page-404-text-line {
  margin: 30px;
}

@media (max-width: 768px) {
  .bqs-body {
    padding: 0;
  }
  .bqs-form-container {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .bqs-form iframe {
    height:550px;
  }
}