/* =========================================================
   login.css — Jamii Services Sign In page
   ========================================================= */

/* ── Page shell ─────────────────────────────────────────── */
.page-shell {
    min-height: 100vh;
  }
  
  /* ── Left panel ─────────────────────────────────────────── */
  .ke-strip-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }
  
  .deco-circle-tr {
    width: 260px;
    height: 260px;
    top: -60px;
    right: -60px;
  }
  
  .deco-circle-bl {
    width: 280px;
    height: 280px;
    bottom: -90px;
    left: -50px;
  }
  
  .left-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
  }
  
  /* Logo box */
  .logo-box {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 auto 24px;
  }
  
  .logo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Portal name */
  .portal-name {
    font-size: 1.8rem;
    font-family: Sora, sans-serif;
  }
  
  /* Tagline */
  .portal-tagline {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    max-width: 300px;
    margin: 0 auto 32px;
    line-height: 1.6;
  }
  
  /* Feature list */
  .feature-list {
    text-align: left;
    display: inline-flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
  }
  
  .feature-icon {
    flex-shrink: 0;
  }
  
  /* ── Right panel ─────────────────────────────────────────── */
  .form-max-width {
    width: 100%;
    max-width: 800px;
  }

  .form-max-width-register {
    width: 100%;
    max-width: 800px;
  }
  
  /* Mobile header */
  .mobile-logo {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: cover;
  }
  
  .mobile-app-name {
    font-size: 0.9rem;
    font-family: Sora, sans-serif;
  }
  
  .mobile-app-sub {
    font-size: 0.7rem;
  }
  
  /* Page heading */
  .page-heading {
    font-size: 1.5rem;
    font-family: Sora, sans-serif;
  }
  
  .page-subheading {
    font-size: 0.875rem;
  }
  
  /* Error banner */
  .error-banner {
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
  }
  
  /* Form labels */
  .form-label-sm {
    font-size: 0.875rem;
  }
  
  /* Password toggle button */
  .pw-toggle {
    cursor: pointer;
    background-color: #fff;
    border-left: 0;
  }
  
  /* Remember-me / forgot row */
  .form-footer-row {
    font-size: 0.875rem;
  }
  
  .forgot-link {
    color: var(--primary);
  }
  
  /* Submit button */
  .submit-btn {
    font-size: 0.95rem;
  }
  
  /* Register nudge */
  .register-nudge {
    font-size: 0.875rem;
  }
  
  .register-link {
    color: var(--primary);
  }
  
  /* Demo info box */
  .demo-box {
    font-size: 0.75rem;
  }