body {
  margin: 0;
  font-family: "Radio Canada", sans-serif;
}

.main {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("/img/bg-step-1.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}
.main::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(15px);
}

.modal {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.form-wrap {
  overflow: auto;
  width: 100%;
  max-width: 500px;
  max-height: calc(100% - 20px);
  margin: 10px;
}

@media (max-width: 685px) {
  .main {
    background-image: url("/img/bg-step-1-sm.png");
  }
}
