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

body {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.main {
  width: 100%;
  height: 100%;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("/img/bgst1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 998px) {
  .main {
    background-image: url("/img/bgst1-dec.png");
  }
}
@media screen and (max-width: 756px) {
  .main {
    background-image: url("/img/bgst1-tab.png");
  }
}
@media screen and (max-width: 556px) {
  .main {
    background-image: url("/img/bgst1-mob.png");
  }
}

.form-wrapper {
  max-width: 450px;
  margin-inline: auto;
  padding-inline: 16px;
  position: relative;
  z-index: 2;
}

.blur-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
  backdrop-filter: blur(8px);
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
  pointer-events: none;
}
