form .welcome {
  color: #3b25a8;
  font-weight: 400;
  font-size: 50px;
  text-transform: uppercase;
  align-items: center;
}

form p {
  color: #5b5b5b;
  font-size: 20px;
  margin: 20px 0;
  text-align: center;
}

form .btns a {
  width: 285px;
  height: 54px;
  border-radius: 40px;
  font-size: 20px;
  text-transform: uppercase;
  border: 1px solid var(--mainColor);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
}

form .btns a.login {
  color: #fff;
  background-color: var(--mainColor);
  margin-bottom: 20px;
}

form .btns a.login:hover {
  transform: scale(1.04);
}

form .btns a.guest {
  color: var(--mainColor);
  background: #fff;
}

form .btns a.guest:hover {
  color: #fff;
  background: var(--mainColor);
}

.image-container img {
  margin-left: -55%;
}

@media (max-width: 768px) {
  .page .logo {
    display: none;
  }

  .container {
    width: 100%;
    height: 100%;
    border-radius: 0;
    grid-template-columns: 1fr;
    grid-template-rows: 40% 60%;
    box-shadow: none;
  }

  .form-container {
    order: 2;
    display: flex;
    align-items: center;
  }

  .image-container {
    border-radius: 0;
    background-color: #fff;
    display: flex;
    justify-content: center;
  }

  .image-container img {
    width: 345px;
    margin: 0;
    margin-bottom: -130px;
    z-index: 99;
  }
}

@media (max-height: 450px) {
  body {
    overflow: auto;
  }

  .page .logo {
    display: none;
  }

  .container {
    width: 100%;
    height: 100%;
    border-radius: 0;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    box-shadow: none;
  }

  .image-container {
    display: none;
  }
}

@media (max-height: 670px) and (max-width: 960px) {
  .image-container {
    display: none;
  }

  .container {
    grid-template-rows: 1fr;
  }

  .page .logo {
    left: 30px;
  }
}

@media (max-height: 640px) {
  .page .logo {
    left: 30px;
  }

  .image-container img {
    height: 60%;
  }
}
