form .welcome {
  color: #3b25a8;
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.users-div {
  width: 100%;
  background-color: #f7f5ff;
  padding: 0.5rem;
  border-radius: 33px;
  display: flex;
  justify-content: space-between;
}

.users-div input[type="radio"] {
  display: none;
}

.users-div label {
  font-weight: 400;
  font-size: 1rem;
  width: calc(90% / 3);
  color: var(--mainColor);
  padding: 0.5rem;
  border-radius: 33px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
}

label.active {
  background-color: var(--mainColor);
  color: #fff;
}

form p {
  color: #5b5b5b;
  font-weight: 400;
  font-size: 0.9rem;
  margin: 1.5rem 0;
  text-align: center;
}

.controls {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

.remember-me input {
  margin-right: 8px;
}

.remember-me label {
  cursor: pointer;
}

.controls .forgot a {
  text-decoration: none;
  font-size: 16px;
  color: #000;
  transition: 0.3s;
}

.controls .forgot a:hover {
  color: var(--mainColor);
}

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

@media (max-width: 768px) {
  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;
  }

  .form-container {
    border-radius: var(--containerBorderRadius);
  }

  input[type="submit"] {
    width: 100%;
  }

  .image-container {
    display: none;
  }
}

@media (max-width: 520px) {
  .controls .remember-me {
    font-size: 14px;
  }

  .controls .forgot a {
    font-size: 15px;
  }
}

@media (max-width: 390px) {
  .controls {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .controls .remember-me {
    margin-bottom: 15px;
  }
}

@media (max-height: 630px) {
  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%;
  }
}
