body,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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


.form-wrapper {
  z-index: 2;
  max-width: 450px;
  padding: 10px;
  border-radius: 16px;
  background-color: #fff;
}