* {
  margin: 0;
  padding: 0;
}

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

body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/img/bg.png") no-repeat center/cover;
  z-index: -1;
  filter: blur(10px);
}

.form-wrapper {
  position: relative;
  top: -1000px;
  max-width: 450px;
  padding: 20px;
  background-color: #fff;
  border-radius: 16px;
  width: 100%;
  transition: top 0.4s ease;
}