.login-layout {
    background: #fff;
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.promo-wrapper {
  height: 100%;
  max-height: 878px;
}

.promo-section {
  height: 100%;
  max-height: 798px;
  aspect-ratio: 4 / 5;
  width: fit-content;
  overflow: hidden;
  background-image: url(../images/promo-shape.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  padding: 46px 43px;
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.promo-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  z-index: 2;
}

.promo-laptop-wrapper {
  display: flex;
  z-index: 2;
  margin-top: -80px;
  width: 80%;
  max-width: 500px;
}

.promo-laptop {
  width: 145%;
  max-height: 75vh;
  margin-left: -45px;
}

.promo-logos-container {
  overflow: hidden;
  z-index: 3;
  padding-bottom: 25px;
  max-width: 500px;
  width: 100%;
  position: relative;
  margin-left: -5%;
}

.promo-logos {
  display: flex;
  width: max-content;
  gap: 15px;
  transform: translate3d(0, 0, 0);
  animation: scroll 25s linear infinite;
  will-change: transform;
}

.promo-logos:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  100% {
    transform: translate3d(0, 0, 0);
  }
  0% {
    transform: translate3d(-50%, 0, 0);
  }
}

.partner {
  width: 70px;
  height: 70px;
  margin-right: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.partner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.auth-card {
  width: 420px;
}

.auth-box h3 {
  font-weight: 600;
}

.sub {
  color: #777;
  margin-bottom: 20px;
}

.forgot {
  font-size: 13px;
  color: #ff4d5a;
  text-decoration: none;
}
