body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body > section.wrapper {
  flex: 1;
}

.login_section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-height: fit-content;

  @media (min-width: 992px) {
    grid-template-columns: 1fr 1fr;
  }
}

.login_card {
  width: 100%;

  @media (min-width: 992px) {
    max-width: none;
    text-align: left;
  }
}

.login_card form {
  max-width: 500px;

  @media (min-width: 992px) {
    max-width: none;
  }
}

.login_card-title {
  color: var(--color-textSecondary);
  font-weight: 600;
  font-size: 22px;

  @media (min-width: 1400px) {
    font-size: 26px;
  }
}

.login_card-subtitle {
  font-weight: 600;
  font-size: 26px;

  @media (min-width: 1400px) {
    font-size: 32px;
  }
}

.login_card-description {
  color: var(--color-textSecondary);

  @media (min-width: 776px) {
    font-size: 18px;
  }
}

.login_card-description .br--first {
  display: none;

  @media (min-width: 550px) {
    display: block;
  }

  @media (min-width: 992px) {
    display: none;
  }

  @media (min-width: 1300px) {
    display: block;
  }
}

.login_card-description .br--second {
  display: none;

  @media (min-width: 550px) {
    display: block;
  }

  @media (min-width: 992px) {
    display: none;
  }
}

.login_card-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
  width: 100%;
}

.login_section-content {
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: fit-content;
  width: 100%;
  gap: 30px;

  @media (min-width: 992px) {
  }
}

.login_section-content > .login_card,
.login_section-content > *:last-child {
  flex: 0 0 auto;
}

.login_card-footer {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--color-textSecondary);
  width: 100%;
  font-size: 14px;
  align-items: center;

  @media (min-width: 992px) {
    align-items: flex-start;
    font-size: 16px;
  }
}

.login_card-footer a,
.login_card-footer button {
  color: var(--color-textHighlightDark);
  font-family: inherit;
  font-size: 14px;
  align-items: center;

  @media (min-width: 776px) {
    font-size: 16px;
  }
}

.login_card .btn {
  width: 100%;
}

.login_section-image {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  max-height: 500px;

  @media (min-width: 992px) {
    max-height: 100%;
  }
}

.login_section-image p {
  color: var(--color-textTertiary);
  font-weight: 600;
  font-size: 20px;
  position: absolute;
  top: 50px;
  left: 50px;
  z-index: 2;
  margin-right: 50px;

  @media (min-width: 370px) {
    font-size: 22px;
  }

  @media (min-width: 480px) {
    font-size: 24px;
  }

  @media (min-width: 992px) {
    font-size: 26px;
    margin-right: 0;
  }

  @media (min-width: 1400px) {
    font-size: 32px;
  }
}

.login_section-image img {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  @media (min-width: 480px) {
    object-position: center -50px;
  }

  @media (min-width: 992px) {
    object-position: center top;
    position: absolute;
  }
}

.login_section-image_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0.5;
  z-index: 1;
}

.login_section_social-proof {
  width: 100%;
  margin: 0 auto;

  @media (min-width: 992px) {
    max-width: none;
    margin: 0;
  }
}

.social-proof_card {
  flex-direction: column;
  text-align: center;

  @media (min-width: 1220px) {
    flex-direction: row;
    text-align: left;
  }
}
