    *, *::before, *::after { box-sizing: border-box; }
    body { margin: 0; font-family: 'DM Sans', system-ui, sans-serif; }
    :root {
      --bg: #f4f5f7;
      --surface: #ffffff;
      --surface-2: #f8f9fb;
      --border: #e4e6ea;
      --border-light: #eef0f3;
      --text-primary: #0f1623;
      --text-secondary: #2d3748;
      --text-muted: #4a5568;
      --accent: #e8a020;
      --accent-light: #fdf3e0;
      --accent-dark: #c4831a;
      --danger: #dc2626;
      --shadow-sm: 0 1px 3px rgba(15,22,35,0.06), 0 1px 2px rgba(15,22,35,0.04);
      --shadow-md: 0 4px 12px rgba(15,22,35,0.08), 0 2px 4px rgba(15,22,35,0.05);
      --radius-sm: 6px;
      --radius-md: 10px;
      --radius-lg: 16px;
      --font-ui: 'DM Sans', system-ui, sans-serif;
    }

.co-login-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0.75rem 0;
}
.co-login-remember {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-secondary, #6b7280);
  cursor: pointer;
  margin: 0;
}
.co-login-remember input[type="checkbox"] {
  width: 16px;
  height: 16px;
}
.co-login-forgot {
  font-size: 0.8125rem;
  color: var(--accent, #e8a020);
  text-decoration: none;
  font-weight: 500;
}
.co-login-forgot:hover {
  color: var(--accent-dark, #c4831a);
  text-decoration: underline;
}
