/* PTM styles — ported from Desktop PTM */
:root {
  --ptm-primary: #0d6efd;
  --ptm-success: #198754;
  --ptm-warning: #f59e0b;
  --ptm-danger: #dc3545;
  --ptm-purple: #6f42c1;
  --ptm-radius: 10px;
}

.ptm-login-body {
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  min-height: 100vh;
}

.ptm-login-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.ptm-login-card {
  width: 100%;
  max-width: 440px;
  border-radius: 18px !important;
  border: none !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5) !important;
}

.ptm-brand-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--ptm-primary), var(--ptm-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
}

.ptm-sidebar-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.ptm-avatar-sm {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ptm-primary), var(--ptm-purple));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-card { border-radius: var(--ptm-radius) !important; }
.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.ptm-pending-timeline .step { opacity: 0.45; }
.ptm-pending-timeline .step.active { opacity: 1; font-weight: 600; }
.ptm-pending-timeline .step.done { opacity: 0.85; color: var(--ptm-success); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
  gap: 0.6rem;
}

.feature-check {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  border: 1.5px solid #e9ecef;
}

.feature-check:has(input:checked) {
  border-color: var(--ptm-primary);
  background: #ebf2ff;
}
