.login {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.panel {
  width: 800px;
  padding: 20px;
  border-radius: 20px;
  background-color: white;
  display: flex;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.panel .left {
  width: 35%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 20px;
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--colorPrimary);
  margin-right: 50px;
  padding: 20px;
}

.panel .left img {
  width: 100%;
  object-fit: contain;
}

.panel .right {
  width: 60%;
  height: 100%;
  margin: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.panel .right form {
  height: 100%;
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: flex-end;
}

.panel .right input[type="text"],
.panel .right input[type="password"] {
  height: 40px;
  border: none;
  /* border-radius: 5px; */
  margin-top: 10px;
  padding-left: 10px;
  background-color: var(--colorBG);
}

.panel .right p {
  color: black;
  font-weight: bold;
}

.panel .right .button {
  margin-top: 20px;
}

.panel .right a {
  color: var(--colorPrimary);
  font-size: 12px;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .panel {
    flex-direction: column;
    width: 100%;
    margin: 0 60px;
  }

  .panel .left {
    width: 100%;
    height: 150px;
    margin: 0;
  }

  .panel .left img {
    width: auto;
    height: 100%;
  }

  .panel .right {
    width: 100%;
    margin: 0;
    margin-top: 20px;
  }
}
