* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100vh;
  padding: 10px;
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/img/bg.png") no-repeat center / cover;
  filter: blur(16px);
}

.form-wrapper {
  max-width: 450px;
  width: 100%;
  z-index: 1;
}

@media (max-width: 600px) {
  body::before {
    background: url("/img/bg-sm.png") no-repeat center / cover;
  }
}

.article-btn {
  position: relative;
  background-color: #000;
  color: #fff;
  display: block;
  max-width: 750px;
  padding: 16px 20px;
  border-radius: 16px;
  width: 100%;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
  transform: scale(1);
  transition: color 0.4s ease, background-color 0.4s ease, transform .4s ease;

  &:hover {
    background-color: #406cdc;
    color: #000;
    transform: scale(1.01);
  }
}