body {
  margin: 0;
  font-family: "Radio Canada", sans-serif;
}

.main {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("/img/bg-st-1.png");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 756px) {
  .main {
    background-image: url("/img/bg-st-2.png");
  }
}
@media screen and (max-width: 556px) {
  .main {
    background-image: url("/img/bg-st-3.png");
  }
}

.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%;
  }
}
.hero__button {
  display: block;
  width: 270px;
  padding: 16px 0;
  background: #b50000;
  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;
  /* box-shadow: 0 0 15px rgba(28, 134, 255, 0.7), 0 0 30px rgba(28, 134, 255, 0.4); */
  transition: scale 0.3s, box-shadow 0.3s;
  z-index: 2;

  &:hover {
    scale: 1.03;
    /* box-shadow: 0 0 25px rgba(28, 134, 255, 0.9),
      0 0 45px rgba(28, 134, 255, 0.7); */
    box-shadow: 0 0 25px rgba(210, 0, 0, 0.4), 0 0 45px rgba(210, 0, 0, 0.2);
  }
}

.blur-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(12px);
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 900px) {
  .hero__button {
    font-size: 25px;
    padding: 16px 16px;
  }
}
@media (max-width: 685px) {
  .hero__button {
    font-size: 20px;
  }
}
@media (min-width: 400px) {
  .hero__button {
    width: 300px;
  }
}
@media (min-width: 600px) {
  .hero__button {
    width: 400px;
  }
}
@media (min-width: 744px) {
  .hero__button {
    width: 500px;
    font-size: 28px;
  }
}
@media (min-width: 1440px) {
  .hero__button {
    width: 800px;
    font-size: 30px;
  }
}

.form-wrapp {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 450px;
}
