:root {
  --ps-primary: #FF6A1A;
  --ps-primary-dark: #E85A0F;
  --ps-secondary: #1B2D4A;
  --ps-dark: #0E1B2C;
  --ps-light: #F7F8FA;
  --ps-muted: #6B7280;
  --ps-border: #E5E7EB;
  --ps-success: #10B981;
  --ps-warning: #F59E0B;
  --ps-danger: #EF4444;
  --ps-talent: #FF6A1A;
  --ps-business: #1B2D4A;
}

* {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  color: #1F2937;
  background: #FFFFFF;
  font-size: 15px;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ps-dark);
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }

.btn {
  font-weight: 600;
  border-radius: 8px;
  padding: 0.65rem 1.25rem;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--ps-primary);
  border-color: var(--ps-primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--ps-primary-dark);
  border-color: var(--ps-primary-dark);
  color: #fff;
}

.btn-dark {
  background: var(--ps-dark);
  border-color: var(--ps-dark);
}
.btn-dark:hover {
  background: var(--ps-secondary);
  border-color: var(--ps-secondary);
}

.btn-outline-primary {
  color: var(--ps-primary);
  border-color: var(--ps-primary);
}
.btn-outline-primary:hover {
  background: var(--ps-primary);
  border-color: var(--ps-primary);
  color: #fff;
}

.btn-outline-light:hover {
  color: var(--ps-dark);
}

/* Navbar */
.ps-navbar {
  background: #fff;
  border-bottom: 1px solid var(--ps-border);
  padding: 1rem 0;
}

.ps-navbar.dark {
  background: var(--ps-dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ps-logo {
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--ps-dark);
  text-decoration: none;
  letter-spacing: -0.03em;
}

.ps-logo span { color: var(--ps-primary); }

.ps-navbar.dark .ps-logo { color: #fff; }

.ps-nav-link {
  color: #4B5563;
  text-decoration: none;
  font-weight: 500;
  margin-right: 1.5rem;
  font-size: 0.95rem;
  transition: color 0.15s;
}
.ps-nav-link:hover, .ps-nav-link.active {
  color: var(--ps-primary);
}
.ps-navbar.dark .ps-nav-link {
  color: rgba(255,255,255,0.75);
}
.ps-navbar.dark .ps-nav-link:hover, .ps-navbar.dark .ps-nav-link.active {
  color: var(--ps-primary);
}

/* Split landing */
.split-container {
  min-height: calc(100vh - 73px);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 991px) {
  .split-container { grid-template-columns: 1fr; }
}

.split-side {
  position: relative;
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s ease;
}

.split-side.talent {
  background: linear-gradient(135deg, #FFF5EE 0%, #FFE5D0 100%);
}
.split-side.business {
  background: linear-gradient(135deg, #1B2D4A 0%, #0E1B2C 100%);
  color: #fff;
}
.split-side.business h1, .split-side.business h2 { color: #fff; }

.split-side .badge-tag {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.split-side.talent .badge-tag {
  background: rgba(255,106,26,0.15);
  color: var(--ps-primary);
}
.split-side.business .badge-tag {
  background: rgba(255,255,255,0.1);
  color: var(--ps-primary);
}

.split-side h1 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
}

.split-side .lead {
  font-size: 1.1rem;
  color: #4B5563;
  margin-bottom: 2rem;
}
.split-side.business .lead { color: rgba(255,255,255,0.75); }

.split-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}
.split-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.split-features i {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,106,26,0.15);
  color: var(--ps-primary);
  border-radius: 6px;
  font-size: 0.9rem;
}

.split-decoration {
  position: absolute;
  font-size: 14rem;
  opacity: 0.05;
  bottom: -2rem;
  right: -2rem;
  color: var(--ps-primary);
}

/* Hero */
.hero {
  padding: 6rem 0 4rem;
  background: linear-gradient(135deg, #FFF5EE 0%, #fff 100%);
}
.hero.dark {
  background: linear-gradient(135deg, #0E1B2C 0%, #1B2D4A 100%);
  color: #fff;
}
.hero.dark h1 { color: #fff; }
.hero h1 {
  font-size: 3.25rem;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero .lead {
  font-size: 1.15rem;
  color: var(--ps-muted);
  margin-bottom: 2rem;
}
.hero.dark .lead { color: rgba(255,255,255,0.7); }

.hero-image {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border: 1px solid var(--ps-border);
}

/* Sections */
section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .eyebrow {
  display: inline-block;
  color: var(--ps-primary);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: var(--ps-muted); font-size: 1.05rem; }

/* Cards */
.feature-card {
  background: #fff;
  border: 1px solid var(--ps-border);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: all 0.2s;
}
.feature-card:hover {
  border-color: var(--ps-primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(255,106,26,0.1);
}
.feature-card .icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,106,26,0.12);
  color: var(--ps-primary);
  border-radius: 12px;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.feature-card h4 { margin-bottom: 0.5rem; font-size: 1.15rem; }
.feature-card p { color: var(--ps-muted); margin: 0; font-size: 0.95rem; }

/* Step card */
.step-card {
  background: var(--ps-light);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  position: relative;
}
.step-number {
  position: absolute;
  top: -18px;
  left: 2rem;
  width: 40px;
  height: 40px;
  background: var(--ps-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.step-card h5 { margin: 0.5rem 0 0.5rem; font-size: 1.05rem; }
.step-card p { color: var(--ps-muted); margin: 0; font-size: 0.9rem; }

/* Job/talent listing card */
.listing-card {
  background: #fff;
  border: 1px solid var(--ps-border);
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.2s;
}
.listing-card:hover {
  border-color: var(--ps-primary);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.listing-card .role-tag {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  background: rgba(255,106,26,0.12);
  color: var(--ps-primary);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.listing-card h5 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.listing-card .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--ps-muted);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.listing-card .meta i { margin-right: 0.3rem; color: var(--ps-primary); }
.listing-card .fee {
  font-weight: 700;
  color: var(--ps-dark);
  font-size: 1.05rem;
}

/* Category card */
.category-card {
  background: #fff;
  border: 1px solid var(--ps-border);
  border-radius: 12px;
  padding: 1.75rem;
  text-align: center;
  height: 100%;
  transition: all 0.2s;
  cursor: pointer;
}
.category-card:hover {
  background: var(--ps-dark);
  color: #fff;
  border-color: var(--ps-dark);
  transform: translateY(-4px);
}
.category-card:hover h5 { color: #fff; }
.category-card .icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(255,106,26,0.12);
  color: var(--ps-primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 1rem;
}
.category-card:hover .icon-wrap { background: var(--ps-primary); color: #fff; }
.category-card h5 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.category-card .count { font-size: 0.85rem; color: var(--ps-muted); margin: 0; }
.category-card:hover .count { color: rgba(255,255,255,0.7); }

/* Talent profile card */
.talent-card {
  background: #fff;
  border: 1px solid var(--ps-border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
  transition: all 0.2s;
}
.talent-card:hover {
  border-color: var(--ps-primary);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.talent-card .avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6A1A, #E85A0F);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.talent-card h5 { margin-bottom: 0.25rem; font-size: 1.05rem; }
.talent-card .role { color: var(--ps-primary); font-size: 0.85rem; font-weight: 600; margin-bottom: 0.75rem; }
.talent-card .meta { color: var(--ps-muted); font-size: 0.85rem; }
.talent-card .rating { color: var(--ps-warning); font-weight: 600; }

/* Testimonial */
.testimonial {
  background: var(--ps-light);
  border-radius: 16px;
  padding: 2.25rem;
  height: 100%;
}
.testimonial p { font-size: 1rem; color: #374151; margin-bottom: 1.5rem; font-style: italic; }
.testimonial .author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial .author .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ps-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.testimonial .author strong { display: block; }
.testimonial .author small { color: var(--ps-muted); }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--ps-primary) 0%, var(--ps-primary-dark) 100%);
  border-radius: 20px;
  padding: 4rem 3rem;
  text-align: center;
  color: #fff;
}
.cta-banner h2 { color: #fff; margin-bottom: 1rem; }
.cta-banner p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 2rem; }
.cta-banner .btn-light {
  background: #fff;
  color: var(--ps-primary);
  border: none;
  font-weight: 600;
}

/* Use case card */
.usecase-card {
  background: #fff;
  border-left: 4px solid var(--ps-primary);
  padding: 1.5rem;
  border-radius: 8px;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.usecase-card h5 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.usecase-card p { color: var(--ps-muted); font-size: 0.9rem; margin: 0; }

/* Footer */
.ps-footer {
  background: var(--ps-dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.ps-footer h6 { color: #fff; margin-bottom: 1rem; font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase; }
.ps-footer a { color: rgba(255,255,255,0.7); text-decoration: none; display: block; padding: 0.3rem 0; font-size: 0.92rem; }
.ps-footer a:hover { color: var(--ps-primary); }
.ps-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  margin-top: 3rem;
  font-size: 0.85rem;
}

/* ============== DASHBOARD ============== */
.dashboard-shell {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}
@media (max-width: 991px) {
  .dashboard-shell { grid-template-columns: 1fr; }
  .ps-sidebar { display: none; }
}
.ps-sidebar {
  background: var(--ps-dark);
  color: #fff;
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.ps-sidebar .sidebar-logo {
  padding: 0 1.5rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.5rem;
}
.ps-sidebar .sidebar-logo .ps-logo { color: #fff; font-size: 1.3rem; }
.ps-sidebar .sidebar-section {
  padding: 0 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin: 1rem 0 0.5rem 0.5rem;
}
.ps-sidebar a.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 1.5rem;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  border-left: 3px solid transparent;
}
.ps-sidebar a.sidebar-link i { font-size: 1.1rem; width: 20px; text-align: center; }
.ps-sidebar a.sidebar-link:hover {
  background: rgba(255,255,255,0.05);
  color: #fff;
}
.ps-sidebar a.sidebar-link.active {
  background: rgba(255,106,26,0.12);
  color: #fff;
  border-left-color: var(--ps-primary);
}

.dashboard-main { background: var(--ps-light); }
.dashboard-topbar {
  background: #fff;
  border-bottom: 1px solid var(--ps-border);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dashboard-topbar .search {
  flex: 1;
  max-width: 420px;
  position: relative;
}
.dashboard-topbar .search input {
  width: 100%;
  padding: 0.6rem 1rem 0.6rem 2.5rem;
  border: 1px solid var(--ps-border);
  border-radius: 8px;
  background: var(--ps-light);
  font-size: 0.92rem;
}
.dashboard-topbar .search i {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ps-muted);
}
.dashboard-topbar .topbar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.dashboard-topbar .icon-btn {
  width: 38px; height: 38px;
  background: var(--ps-light);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ps-dark);
  position: relative;
  border: none;
}
.dashboard-topbar .icon-btn .dot {
  position: absolute;
  top: 8px; right: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ps-primary);
}
.dashboard-topbar .user-chip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.dashboard-topbar .user-chip .avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ps-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.dashboard-topbar .user-chip strong { display: block; font-size: 0.9rem; }
.dashboard-topbar .user-chip small { color: var(--ps-muted); font-size: 0.78rem; }

.dashboard-content { padding: 2rem; }
.dashboard-content > h1 { font-size: 1.6rem; margin-bottom: 0.25rem; }
.dashboard-content .subtitle { color: var(--ps-muted); margin-bottom: 2rem; }

.stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--ps-border);
}
.stat-card .label { font-size: 0.85rem; color: var(--ps-muted); margin-bottom: 0.5rem; }
.stat-card .value { font-size: 1.85rem; font-weight: 700; color: var(--ps-dark); margin-bottom: 0.5rem; }
.stat-card .change { font-size: 0.8rem; font-weight: 600; }
.stat-card .change.up { color: var(--ps-success); }
.stat-card .change.down { color: var(--ps-danger); }
.stat-card .icon-wrap {
  width: 44px; height: 44px;
  background: rgba(255,106,26,0.12);
  color: var(--ps-primary);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.panel {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--ps-border);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.panel-header h4 { font-size: 1.05rem; margin: 0; }
.panel-header a { color: var(--ps-primary); font-size: 0.88rem; font-weight: 600; text-decoration: none; }

.dash-job {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--ps-border);
  border-radius: 10px;
  margin-bottom: 0.75rem;
  align-items: center;
}
.dash-job:last-child { margin-bottom: 0; }
.dash-job:hover { border-color: var(--ps-primary); background: #FFF9F4; }
.dash-job .job-icon {
  width: 48px; height: 48px;
  background: rgba(255,106,26,0.12);
  color: var(--ps-primary);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.dash-job .job-info { flex: 1; min-width: 0; }
.dash-job .job-info h6 { margin: 0 0 0.25rem; font-size: 0.98rem; }
.dash-job .job-info .meta {
  display: flex; gap: 0.85rem; flex-wrap: wrap;
  color: var(--ps-muted); font-size: 0.82rem;
}
.dash-job .job-info .meta i { margin-right: 0.2rem; }
.dash-job .fee { font-weight: 700; color: var(--ps-dark); }
.dash-job .actions { display: flex; gap: 0.5rem; }

.app-status {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.app-status.pending { background: rgba(245,158,11,0.12); color: var(--ps-warning); }
.app-status.accepted { background: rgba(16,185,129,0.12); color: var(--ps-success); }
.app-status.rejected { background: rgba(239,68,68,0.12); color: var(--ps-danger); }
.app-status.active { background: rgba(16,185,129,0.12); color: var(--ps-success); }
.app-status.draft { background: rgba(107,114,128,0.12); color: var(--ps-muted); }
.app-status.full { background: rgba(27,45,74,0.12); color: var(--ps-secondary); }
.app-status.shortage { background: rgba(239,68,68,0.12); color: var(--ps-danger); }

.notification-item {
  display: flex;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--ps-border);
}
.notification-item:last-child { border-bottom: none; }
.notification-item .notif-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}
.notification-item .notif-icon.ok { background: rgba(16,185,129,0.12); color: var(--ps-success); }
.notification-item .notif-icon.warn { background: rgba(245,158,11,0.12); color: var(--ps-warning); }
.notification-item .notif-icon.bad { background: rgba(239,68,68,0.12); color: var(--ps-danger); }
.notification-item .notif-content { flex: 1; }
.notification-item .notif-content p { margin: 0 0 0.2rem; font-size: 0.9rem; }
.notification-item .notif-content small { color: var(--ps-muted); font-size: 0.78rem; }

.schedule-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--ps-border);
}
.schedule-item:last-child { border-bottom: none; }
.schedule-item .date-block {
  background: var(--ps-light);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  text-align: center;
  min-width: 56px;
}
.schedule-item .date-block .day { font-weight: 700; font-size: 1.2rem; line-height: 1; color: var(--ps-dark); }
.schedule-item .date-block .month { font-size: 0.7rem; text-transform: uppercase; color: var(--ps-muted); }
.schedule-item .info { flex: 1; }
.schedule-item .info h6 { margin: 0 0 0.2rem; font-size: 0.95rem; }
.schedule-item .info small { color: var(--ps-muted); }

.applicant-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--ps-border);
  border-radius: 10px;
  margin-bottom: 0.75rem;
}
.applicant-row:last-child { margin-bottom: 0; }
.applicant-row .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ps-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.applicant-row .info { flex: 1; }
.applicant-row .info h6 { margin: 0 0 0.2rem; font-size: 0.95rem; }
.applicant-row .info .meta { display: flex; gap: 0.7rem; color: var(--ps-muted); font-size: 0.82rem; }
.applicant-row .actions { display: flex; gap: 0.5rem; }

.alert-banner {
  background: linear-gradient(135deg, #FFF1ED 0%, #FFE5D0 100%);
  border-left: 4px solid var(--ps-primary);
  padding: 1.25rem 1.5rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.alert-banner .alert-content h6 { margin: 0 0 0.25rem; font-size: 1rem; color: var(--ps-dark); }
.alert-banner .alert-content p { margin: 0; font-size: 0.88rem; color: #6B5642; }

/* ============== AUTH ============== */
.auth-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
@media (max-width: 991px) {
  .auth-shell { grid-template-columns: 1fr; }
  .auth-side { display: none; }
}
.auth-side {
  background: linear-gradient(135deg, var(--ps-dark) 0%, var(--ps-secondary) 100%);
  color: #fff;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.auth-side h2 { color: #fff; font-size: 2.25rem; margin-bottom: 1rem; }
.auth-side p { color: rgba(255,255,255,0.75); font-size: 1.05rem; }
.auth-side .testimonial-mini {
  background: rgba(255,255,255,0.05);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
}
.auth-form-wrap {
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
}
.auth-form-wrap h3 { font-size: 1.85rem; margin-bottom: 0.5rem; }
.auth-form-wrap .lead { color: var(--ps-muted); margin-bottom: 2rem; }
.auth-form-wrap .form-control,
.auth-form-wrap .form-select {
  padding: 0.75rem 1rem;
  border: 1px solid var(--ps-border);
  border-radius: 8px;
  font-size: 0.95rem;
}
.auth-form-wrap .form-control:focus,
.auth-form-wrap .form-select:focus {
  border-color: var(--ps-primary);
  box-shadow: 0 0 0 3px rgba(255,106,26,0.12);
}
.auth-form-wrap .form-label { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.4rem; }
.auth-form-wrap .role-pick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.auth-form-wrap .role-pick label {
  border: 2px solid var(--ps-border);
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}
.auth-form-wrap .role-pick label:hover { border-color: var(--ps-primary); }
.auth-form-wrap .role-pick input { display: none; }
.auth-form-wrap .role-pick input:checked + label,
.auth-form-wrap .role-pick label.active {
  border-color: var(--ps-primary);
  background: #FFF9F4;
}
.auth-form-wrap .role-pick i { font-size: 1.6rem; color: var(--ps-primary); margin-bottom: 0.4rem; }
.auth-form-wrap .role-pick strong { display: block; font-size: 0.95rem; }
.auth-form-wrap .role-pick small { color: var(--ps-muted); font-size: 0.78rem; }
