body {
  height: 100vh;
  width: 100%;
  background-color: #e7e0f5;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-body {
  background: white;
  box-shadow: 0 18px 40px hsla(258, 56%, 37%, 0.11);
  display: flex;
  border-radius: 25px;
  overflow: hidden;
  aspect-ratio: 16/9;
  width: min(92vw, 110rem);
  max-width: 110rem;
  min-height: 48rem;
  align-items: stretch;
  justify-content: space-between;
  margin: 2.4rem;
}

.login-img-container {
  background-image:
    linear-gradient(
      180deg,
      rgba(163, 131, 216, 0.55) 0%,
      rgba(163, 131, 216, 0.15) 32%,
      rgba(58, 34, 118, 0.35) 72%,
      rgba(58, 34, 118, 0.82) 100%
    ),
    url(../assets/img/login.webp);

  width: 52%;
  min-height: 24rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.login-logo {
  height: 5.6rem;
  width: auto;
}

.copies-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-left: 0;
  gap: 1.2rem;
  width: 100%;
  height: auto;
  flex: 1 1 auto;
}

.welcoming {
  font-family: 'AktivGrotesk-medium';
  font-size: 2.4rem;
  color: #d97757;
}

.title-primary {
  font-size: 3.2rem;
  font-family: 'AktivGrotesk-bold';
  color: var(--text);
}

.login {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  width: 48%;
  padding: 4rem 3.2rem;
  height: 100%;
}

.instructions {
  color: var(--text);
  font-family: 'AktivGrotesk-medium';
  font-size: 1.8rem;
}

.input-options {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.input-label {
  font-family: 'AktivGrotesk-medium';
  font-size: 1.4rem;
  margin-top: 1.2rem;
  display: block;
  color: var(--purple-light);
}

.input {
  margin-top: 0.6rem;
  width: 100%;
  padding: 1.2rem 1.2rem 1.2rem 1.4rem;
  font-family: 'AktivGrotesk-thin';
  border: 1.5px solid #e7ddf6;
  background: #faf8fe;
  border-radius: 13px;
  font-size: 1.8rem;
  color: var(--morado-oscuro);
  outline: none;
  transition:
    border-color 0.15s,
    background 0.15s;
}

.btn-signin {
  margin-top: 1.2rem;
  align-self: center;
  width: 100%;
  background-color: #8e5fe6;
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: 'AktivGrotesk-medium';
  font-weight: 800;
  font-size: 15.5px;
  padding: 15px;
  border-radius: 14px;
  box-shadow: 0 14px 28px rgba(107, 63, 209, 0.36);
  letter-spacing: -0.01em;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}

.non-user {
  align-self: center;
  text-align: center;
  font-size: 13.5px;
  color: var(--text-soft);
  font-weight: 500;
  margin: 22px 0 0;
  font-family: 'AktivGrotesk-bold';
  letter-spacing: 0.5px;
}

.register {
  background-color: transparent;
  border: none;
  color: var(--accent);
  text-decoration: none;
  transition: all ease-in-out 0.1s;
  font-family: 'AktivGrotesk-bold';
  cursor: pointer;
}

.register:hover {
  text-shadow: 0px 0px 15px #d97757;
}
