/* ============================================================
   PROPERTYDEAL — Homepage Login / Auth Banner
   File: homepage_login_banner.css
   Structure: 3-col tile (icon | feature-list | dual CTA)
   ============================================================ */
.pl-auth-banner *,
.pl-auth-banner *::before,
.pl-auth-banner *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Outer wrapper ── */
.pl-auth-banner {
  width: 100%;
  padding: 0 16px;
  margin: 32px 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ── 3-column inner tile ── */
.pl-auth-inner {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  align-items: center;
  gap: 0;
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 16px;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  min-height: 130px;
}

/* ═══════════════════════════════
   COL 1 — Icon tile (accent strip)
   ═══════════════════════════════ */
.pl-auth-icon-col {
  align-self: stretch;
  background: #DBEAFE;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 12px;
  position: relative;
  overflow: hidden;
}

.pl-auth-icon-wrap {
  width: 52px;
  height: 52px;
  background: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
}

.pl-auth-key-svg {
  width: 36px;
  height: 36px;
}

/* ── 3x3 dot grid ── */
.pl-auth-dots {
  display: grid;
  grid-template-columns: repeat(3, 5px);
  gap: 5px;
}

.pl-auth-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(30, 58, 138, 0.25);
}

/* ═══════════════════════════════
   COL 2 — Feature list (main body)
   ═══════════════════════════════ */
.pl-auth-mid-col {
  padding: 24px 28px;
}

.pl-auth-eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2563EB;
  margin-bottom: 6px;
}

.pl-auth-title {
  font-size: 17px;
  font-weight: 700;
  color: #1E3A8A;
  line-height: 1.35;
  margin-bottom: 14px;
}

.pl-auth-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pl-auth-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: #1E40AF;
  line-height: 1.4;
}

.pl-auth-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: #1E3A8A;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}

/* ═══════════════════════════════
   COL 3 — Dual CTA column
   ═══════════════════════════════ */
.pl-auth-cta-col {
  padding: 24px 28px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border-left: 1px dashed #BFDBFE;
  min-width: 185px;
}

.pl-auth-btn-login {
  display: block;
  width: 100%;
  text-align: center;
  background: #1E3A8A;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: 9px;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.1s ease;
  white-space: nowrap;
}

.pl-auth-btn-login:hover {
  background: #1E40AF;
}

.pl-auth-btn-login:active {
  transform: scale(0.98);
}

.pl-auth-or {
  font-size: 11px;
  color: #93C5FD;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pl-auth-btn-signup {
  display: block;
  width: 100%;
  text-align: center;
  background: transparent;
  color: #1E3A8A;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 9px;
  border: 1.5px solid #BFDBFE;
  text-decoration: none;
  transition: border-color 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.pl-auth-btn-signup:hover {
  border-color: #2563EB;
  background: #EFF6FF;
}

.pl-auth-note {
  font-size: 10.5px;
  color: #93C5FD;
  text-align: center;
}

/* ═══════════════════════════════
   RESPONSIVE — Tablet (≤900px)
   ═══════════════════════════════ */
@media (max-width: 900px) {
  .pl-auth-inner {
    grid-template-columns: 72px 1fr auto;
  }

  .pl-auth-title {
    font-size: 15px;
  }

  .pl-auth-cta-col {
    min-width: 160px;
    padding: 20px 18px 20px 14px;
  }
}

/* ═══════════════════════════════
   RESPONSIVE — Mobile (≤640px)
   ═══════════════════════════════ */
@media (max-width: 640px) {
  .pl-auth-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .pl-auth-icon-col {
    flex-direction: row;
    justify-content: flex-start;
    padding: 14px 20px;
    gap: 14px;
  }

  .pl-auth-mid-col {
    padding: 16px 20px 0;
  }

  .pl-auth-cta-col {
    border-left: none;
    border-top: 1px dashed #BFDBFE;
    padding: 16px 20px 20px;
    align-items: flex-start;
    min-width: unset;
  }

  .pl-auth-btn-login,
  .pl-auth-btn-signup {
    width: auto;
    display: inline-block;
  }
}
