.nelvtop {
  margin: 0;
  font-family: "Inter", sans-serif;
}

.nelvtop-main {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("/img/bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.nelvtop-main::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(0px);
}
.nelvtop-link-button {
  display: block;
  width: 300px;
  padding: 16px 0;
  border-radius: 12px;
  margin: 0 auto;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  text-align: center;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background-color: #d42a23;
  transition: transform 0.3s ease-out;

  &:hover {
    transform: scale(1.02);
  }
}
.nelvtop-form-wrap {
  position: relative;
  overflow: auto;
  width: 100%;
  max-width: 500px;
  max-height: calc(100% - 20px);
  margin: 10px;
}

@media (max-width: 800px) {
  .nelvtop-main {
    background-image: url("/img/bg.png");
  }
  .nelvtop-link-button {
    font-size: 25px;
    padding: 16px 16px;
  }
}
@media (max-width: 685px) {
  .nelvtop-link-button {
    font-size: 20px;
  }
}
@media (min-width: 400px) {
  .nelvtop-link-button {
    width: 300px;
  }
}
@media (min-width: 600px) {
  .nelvtop-link-button {
    width: 400px;
  }
}
@media (min-width: 744px) {
  .nelvtop-link-button {
    width: 500px;
    font-size: 28px;
  }
}
@media (min-width: 1440px) {
  .nelvtop-link-button {
    width: 800px;
    font-size: 30px;
  }
}

.policy-terms {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  color: #000;
  display: flex;
  gap: 12px;
  text-decoration: none;
}

.policy-terms-link {
  font-size: 26px;
  font-weight: 500;
  text-decoration: none;
  color: #000;
}

.text {
  font-size: 40px;
  text-align: center;
  font-weight: 700;
}
