/* ─── LOGIN OVERLAY ───────────────────────────── */
.login-overlay {
  position: fixed; inset: 0; background: #f0f2ee;
  display: flex; align-items: center; justify-content: center;
  z-index: 99999;
}
.login-box {
  background: #fff; border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,.10);
  padding: 40px; width: 100%; max-width: 380px;
}
.login-brand {
  display: flex; align-items: center; gap: 12px; margin-bottom: 28px;
}
.login-title {
  font-size: 20px; font-weight: 700; color: #2D3132; margin: 0 0 20px;
}
.login-label {
  display: block; font-size: 11px; font-weight: 700;
  color: #64748b; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 5px;
}
.login-input {
  width: 100%; padding: 10px 13px; border: 1px solid #e2e8f0;
  border-radius: 8px; font-size: 13px; font-family: inherit;
  outline: none; box-sizing: border-box; margin-bottom: 0;
}
.login-input:focus { border-color: var(--primary); }
.login-error {
  color: #dc2626; font-size: 12px; min-height: 20px;
  margin: 8px 0 4px;
}
.login-btn {
  width: 100%; margin-top: 16px; padding: 11px;
  background: var(--primary); color: #2D3132;
  border: none; border-radius: 8px; font-size: 14px;
  font-weight: 700; font-family: inherit; cursor: pointer;
  transition: opacity .15s;
}
.login-btn:hover { opacity: .88; }
.login-btn:disabled { opacity: .5; cursor: not-allowed; }
