.container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.right {
  max-width: 50%;
  height: 100vh;
  background-color: var(--dark-40);
  display: none;

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

.left {
  .container-left {
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    padding: 0 2.4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 400px;
  }
}

.title {
  display: flex;
  gap: 0.8rem;
  flex-direction: column;

  p {
    font-size: 1.6rem;
    color: var(--dark-10);
  }

  h1 {
    font-size: 2.4rem;
    color: var(--dark-10);
  }
}

form {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.label-email,
.label-password {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--dark-10);
}

#email,
#password {
  border-radius: 4px;
  height: 4.9rem;
  border: 1px solid var(--dark-30);
  padding: 1.6rem 0 1.6rem 1.6rem;
  font-size: 1.6rem;
  color: var(--dark-20);
}

.div-remenber {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.label-remenber {
  display: flex;
  gap: 0.8rem;
  font-size: 1.4rem;
  color: var(--dark-10);
  font-weight: 500;
}

.forgot > a {
  font-size: 1.4rem;
  color: var(--brand-color);
  text-decoration: none;
  font-weight: 500;
}

.div-buttons {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.btn-login {
  background-color: var(--brand-color);
  color: var(--dark-50);
  height: 4.5rem;
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
}

.btn-google {
  background-color: var(--dark-10);
  color: var(--dark-50);
  height: 4.5rem;
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  font-size: 1.6rem;
  font-weight: 600;
  display: flex;
  gap: 0.8rem;
  cursor: pointer;
  justify-content: center;
  align-items: center;
}

.register {
  text-align: center;
  font-size: 1.6rem;
  color: var(--dark-10);

  a {
    color: var(--brand-color);
    text-decoration: none;
    font-weight: 500;
  }
}

@media screen and (min-width: 958px) {
  .right {
    display: inline;
    width: 50%;
  }

  .left {
    width: 50%;
  }
}
