/* ============================================================
   PROPERTYDEAL — Sidebar Login / Auth Strip
   File: listing_sidebar_login_banner.css
   Structure: Top accent bar + horizontal icon | text | pills
   ============================================================ */
.pl-auth-strip *,
.pl-auth-strip *::before,
.pl-auth-strip *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Outer container ── */
.pl-auth-strip {
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 16px;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  width: 100%;
}

/* ── Thin top accent bar ── */
.pl-auth-strip-bar {
  height: 4px;
  background: linear-gradient(90deg, #1E3A8A 0%, #2563EB 60%, #93C5FD 100%);
}

/* ── Body: horizontal layout ── */
.pl-auth-strip-body {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
}

/* ── Icon badge ── */
.pl-auth-strip-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #DBEAFE;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Text block ── */
.pl-auth-strip-text {
  flex: 1;
  min-width: 0;
}

.pl-auth-strip-title {
  font-size: 13px;
  font-weight: 700;
  color: #1E3A8A;
  line-height: 1.3;
  margin-bottom: 3px;
}

.pl-auth-strip-sub {
  font-size: 11px;
  color: #2563EB;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Pill buttons ── */
.pl-auth-strip-actions {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pl-auth-pill-login {
  display: inline-block;
  background: #1E3A8A;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 999px;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: background 0.15s ease;
}

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

.pl-auth-pill-signup {
  display: inline-block;
  background: transparent;
  color: #1E3A8A;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1.5px solid #BFDBFE;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: border-color 0.15s ease, background 0.15s ease;
}

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