.login-content {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap-reverse;
}

.login-content > div {
  flex: 1;
  height: 100%;
  margin-top: 4rem;
}

.login-right {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 16px;
}

.login-right button {
  width: 100%;
  border-radius: 16px;
  height: 2.5rem;
}

.login-right .actions {
  width: 100%;
  text-align: center;
}

.login-right a {
  text-decoration: none;
  color: var(--gray-color);
}

.login-left h1 span {
  color: var(--primary-color);
}

.login-left p {
  font-size: 18px;
}

.login-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;

  align-items: center;
}

@media (max-width: 412px) {
  .login-left {
    text-align: center;
  }
}
