*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  font-family: 'Roboto', sans-serif;
}

.main {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background-image: url('/img/bg-desk.png');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;

  @media screen and (max-width: 767px) {
    background-image: url('/img/bg-mob.png');
  }

  @media screen and (min-width: 768px) and (max-width: 1439px) {
    background-image: url('/img/bg-tab.png');
  }
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;

  backdrop-filter: blur(10px) brightness(70%);
}

.img {
  width: 100%;
}

.reg-form-wrapper {
  max-width: 500px;
}
