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

.nelvtop-main {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("/img/bg-st.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}
.nelvtop-main::before {
  content: "";
  position: absolute;
  inset: 0;
  /* backdrop-filter: blur(10px) brightness(70%); */
  backdrop-filter: blur(10px);
}
.nelvtop-link-button {
  display: block;
  width: 300px;
  padding: 16px 0;
  border-radius: 12px;
  margin: 0 auto;
  font-family: "Inter";
  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: #0a7cff; */
  background-color: #03c;
  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;
}
.flare {
  position: absolute;
  top: 0;
  height: 100%;
  width: 25px;
  transform: skewX(-45deg);
  animation: flareAnimation;
  left: 80%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.4)
  );
  animation: flareAnimation 3s infinite linear;
}
@keyframes flareAnimation {
  0% {
    left: 10%;
  }
  100% {
    left: 80%;
  }
}

@media (max-width: 800px) {
  .nelvtop-main {
    background-image: url("/img/bg-st-2.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;
  }
}

.nelvtop-form-wrapp {
  position: relative;
  width: 100%;
  max-width: 500px;
}
