@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

* {
  font-family: "Inter", sans-serif !important;
}

.main-login {
  flex: 1 1 50%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;

  @media (max-width: 768px) {
    flex-direction: column;
  }
}

.login-form,
.brand {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  flex: 0 1 50%;
  justify-content: center;
}

.middle_line {
  width: 3px;
  position: absolute;
  left: 50%;
  height: 75%;
  top: 15%;
  border-radius: 1rem;
  background-color: #3b8deb;

  @media (max-width: 768px) {
    display: none;
  }
}
