.Login\.module___loginPage {
  min-height: 100vh;
  display: flex;
  justify-content: center;
}

.Login\.module___loginPage--image {
  width: 50vw;
  position: sticky;
  height: 100vh;
}

.Login\.module___loginPage--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.Login\.module___loginPage-form {
  width: 50vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
}

@media (max-width: 767px) {
  .Login\.module___loginPage {
    flex-direction: column;
  }

  .Login\.module___loginPage--image {
    display: none;
    width: 100%;
    margin-bottom: 12px;
    height: 50vh;
  }

  .Login\.module___loginPage-form {
    width: 100%;
  }
}

