* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.page {
  position: relative;
  width: 100%;
  height: 100vh;
}
.page-bg {
  position: fixed;
  z-index: 1;
  inset: 0;
  background-image: url("/img/bg-1.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.page-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px) brightness(0.8);
}
.page-content {
  width: 100%;
  max-width: 700px;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
}
.page-content p {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 40px;
  text-align: center;
}
.actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 300px;
  background-color: #b5f400;
  border: 2px solid #000;
  color: #000;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
}
.link-btn:hover {
  background-color: transparent;
}
.page-links {
  position: fixed;
  bottom: 0;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  color: #fff;
  padding: 6px;
}
.page-links a {
  font-size: 20px;
  color: #fff;
}
.page-links a:hover {
  text-decoration: none;
}
.form-wrapp {
  width: 100%;
  max-width: 600px;
}
@media (max-width: 800px) {
  .page-bg {
    background-image: url("/img/bg-2.png");
  }
}
@media (max-width: 400px) {
  .page-bg {
    background-image: url("/img/bg-3.png");
  }
}
