/* PromoFast — Login page only */

.pf-login-page .pf-page__showcase-inner {
  gap: 0.85rem;
}

.pf-login-page .pf-showcase__hero-img {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: 120px;
  overflow: hidden;
  border-radius: var(--pf-r-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b1020;
  box-shadow:
    0 0 0 1px rgba(13, 148, 136, 0.1),
    0 6px 20px rgba(0, 0, 0, 0.4),
    0 0 28px rgba(13, 148, 136, 0.08);
}

.pf-login-page .pf-showcase__hero-img::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(11, 16, 32, 0.1) 0%, rgba(11, 16, 32, 0.55) 100%),
    linear-gradient(90deg, rgba(11, 16, 32, 0.4) 0%, transparent 20%, transparent 80%, rgba(11, 16, 32, 0.4) 100%),
    radial-gradient(circle at 50% 100%, rgba(13, 148, 136, 0.18) 0%, transparent 55%);
  pointer-events: none;
}

.pf-login-page .pf-showcase__hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  box-shadow: inset 0 0 24px rgba(11, 16, 32, 0.5);
  pointer-events: none;
}

.pf-login-page .pf-showcase__hero-img-el {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.88) saturate(1.08) contrast(1.04);
}

@media (min-width: 1024px) {
  .pf-login-page .pf-showcase__hero-img {
    flex-shrink: 0;
  }

  .pf-login-page .pf-showcase__highlights {
    flex-shrink: 0;
  }
}

@media (max-width: 1023px) {
  .pf-login-page .pf-mobile-top .pf-brand__name {
    background: var(--pf-gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .pf-login-page .pf-showcase__hero-img {
    height: 140px;
  }
}
