.auth_page {
  background: var(--bgColor2) !important;
  height: calc(100vh - 71px);
}
.auth_page .wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 80px 30px;
  background: var(--bgColor1);
  border: 1px solid var(--bgColor3);
  margin: 80px 0;
  border-radius: 20px;
}
@media only screen and (max-width: 1000px) {
  .auth_container {
    padding: 0 !important;
    background: var(--bgColor1);
  }
  .auth_page .wrapper{
    max-width: 500px;
    grid-template-columns: 1fr;
    grid-gap: 50px;
    padding: 30px 25px 30px;
    margin: 0 auto;
    border-radius: 0;
    border: none;
  }
  .auth_page .wrapper form {
    width: 100%;
    max-width: unset !important;
  }
}
.auth_page .wrapper form {
  max-width: 350px;
  margin: 0 auto;
}

.auth_page .illustration{
  position: relative;
  display: flex;
  height: 350px;
  width: 350px;
  margin: 0 auto;
}
@media only screen and (max-width: 750px) {
  .auth_page .illustration {
    height: 300px;
    width: 300px;
  }
}
@media only screen and (max-width: 600px) {
  .auth_page .illustration {
    height: 250px;
    width: 250px;
  }
}
@media only screen and (max-width: 350px) {
  .auth_page .illustration {
    width: unset;
    height: unset;
    max-width: 200px;
  }
}
.auth_page .illustration img {
  width: 100%;
}