/* ============================================
   OnPortfolio · Register Page
   Matched to your exact HTML structure
============================================ */

:root {
  --bg: #0f172a;
  --bg-secondary: #1e293b;
  --bg-tertiary: #334155;
  --border: rgba(148, 163, 184, 0.15);
  --text: #e2e8f0;
  --text-soft: #cbd5e1;
  --text-mute: #94a3b8;
  --accent: #38bdf8;
  --accent-dark: #0ea5e9;
  --accent-soft: rgba(56, 189, 248, 0.12);
  --success: #4ade80;
  --danger: #ef4444;
  --danger-soft: rgba(239, 68, 68, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
}

/* ============ RESET ============ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  /* NO flex centering — your layout is 2-column full page */
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

/* ============ MAIN LAYOUT ============ */
.register-container {
  display: flex;
  min-height: 100vh;
  width: 100%;
}

/* ============ LEFT BRANDING ============ */
.register-branding {
  flex: 0 0 42%;
  background: linear-gradient(160deg, #1e293b 0%, #0f172a 60%, #0d1526 100%);
  padding: 60px 48px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--border);
}

.register-branding::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(56, 189, 248, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.branding-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.logo-icon {
  font-size: 36px;
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

/* Branding title */
.branding-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

/* Branding description */
.branding-desc {
  font-size: 15px;
  color: var(--text-mute);
  line-height: 1.7;
  margin-bottom: 40px;
}

/* Features */
.branding-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-icon {
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  border: 1px solid rgba(56, 189, 248, 0.15);
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 4px;
}

.feature-text strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.feature-text span {
  font-size: 13px;
  color: var(--text-mute);
}

/* Testimonial */
.branding-testimonial {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 40px;
}

.branding-testimonial p {
  font-size: 14px;
  color: var(--text-soft);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #6366f1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-info strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.author-info span {
  font-size: 12px;
  color: var(--text-mute);
}

/* ============ RIGHT FORM SECTION ============ */
.register-form-section {
  flex: 1;
  background: var(--bg);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 48px;
  overflow-y: auto;
  min-height: 100vh;
}

.form-wrapper {
  width: 100%;
  max-width: 500px;
  padding-top: 8px;
}

/* ============ PROGRESS BAR ============ */
.progress-container {
  margin-bottom: 36px;
}

.progress-bar {
  height: 4px;
  background: var(--bg-tertiary);
  border-radius: 2px;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #6366f1);
  border-radius: 2px;
  width: 0%;
  transition: width 0.4s ease;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}

/* step-dot is what your HTML uses */
.step-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mute);
  transition: all 0.3s ease;
}

.step-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

/* Active step */
.progress-step.active .step-dot {
  background: var(--accent);
  border-color: var(--accent);
  color: #0f172a;
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.4);
}

.progress-step.active .step-label {
  color: var(--accent);
}

/* Completed step */
.progress-step.completed .step-dot {
  background: var(--success);
  border-color: var(--success);
  color: #0f172a;
  font-size: 0;
}

.progress-step.completed .step-dot::after {
  content: "✓";
  font-size: 14px;
  font-weight: 700;
}

.progress-step.completed .step-label {
  color: var(--success);
}

/* ============ FORM STEPS ============ */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: stepIn 0.35s ease;
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Step header */
.step-header {
  margin-bottom: 28px;
}

.step-header h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.step-header p {
  font-size: 14px;
  color: var(--text-mute);
}

/* ============ FORM ELEMENTS ============ */
.register-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
}

.label-icon {
  font-size: 14px;
}

/* All inputs */
.form-group input[type="text"],
.form-group input[type="email"],
.password-input-wrapper input[type="password"],
.password-input-wrapper input[type="text"] {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  transition: all 0.2s;
  outline: none;
}

.form-group input[type="text"]:hover,
.form-group input[type="email"]:hover,
.password-input-wrapper input:hover {
  border-color: rgba(148, 163, 184, 0.3);
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.password-input-wrapper input:focus {
  border-color: var(--accent);
  background: rgba(56, 189, 248, 0.04);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-group input::placeholder,
.password-input-wrapper input::placeholder {
  color: var(--text-mute);
  font-size: 13px;
}

/* Error state */
.form-group input.error {
  border-color: var(--danger);
  background: var(--danger-soft);
}

/* Error message */
.input-error {
  font-size: 12px;
  color: var(--danger);
  display: none;
  margin-top: 2px;
}

.input-error.visible {
  display: block;
}

/* ============ PASSWORD INPUT ============ */
.password-input-wrapper {
  position: relative;
}

.password-input-wrapper input {
  padding-right: 48px;
}

.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  opacity: 0.5;
  transition: opacity 0.2s;
  line-height: 1;
}

.toggle-password:hover {
  opacity: 1;
}

.eye-icon {
  font-size: 16px;
}

/* ============ PASSWORD STRENGTH ============ */
.password-strength {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.strength-bar {
  flex: 1;
  height: 4px;
  background: var(--bg-tertiary);
  border-radius: 2px;
  overflow: hidden;
}

.strength-fill {
  height: 100%;
  width: 0%;
  border-radius: 2px;
  background: var(--text-mute);
  transition:
    width 0.3s ease,
    background-color 0.3s ease;
}

.strength-text {
  font-size: 11px;
  color: var(--text-mute);
  white-space: nowrap;
  min-width: 90px;
  text-align: right;
  transition: color 0.3s;
}

/* ============ CHECKBOX ============ */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}

.form-checkbox input[type="checkbox"] {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
}

.form-checkbox label {
  font-size: 13px;
  color: var(--text-mute);
  cursor: pointer;
  line-height: 1.5;
}

.form-checkbox label a {
  color: var(--accent);
  font-weight: 500;
}

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  background: var(--accent);
  color: #0f172a;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(56, 189, 248, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  background: transparent;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.btn-secondary:hover {
  background: var(--bg-secondary);
  border-color: var(--text-mute);
  color: var(--text);
}

.btn-full {
  width: 100%;
}

.btn-icon {
  font-size: 15px;
}

/* Skip button */
.btn-skip {
  display: block;
  width: 100%;
  padding: 10px;
  background: none;
  border: none;
  color: var(--text-mute);
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  text-align: center;
  margin-top: 10px;
  transition: color 0.2s;
}

.btn-skip:hover {
  color: var(--text-soft);
}

/* Step actions */
.step-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.step-actions .btn-primary {
  flex: 1;
}

/* Loading spinner */
.loading-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(15, 23, 42, 0.3);
  border-top-color: #0f172a;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============ DIVIDER ============ */
.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.divider span {
  font-size: 12px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* ============ SOCIAL LOGIN ============ */
.social-login {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 13px 20px;
  background: var(--bg-secondary);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.btn-social:hover {
  background: var(--bg-tertiary);
  border-color: var(--text-mute);
}

.btn-google:hover {
  border-color: #4285f4;
  background: rgba(66, 133, 244, 0.08);
}

/* ============ FORM FOOTER ============ */
.form-footer {
  text-align: center;
  margin-top: 20px;
}

.form-footer p {
  font-size: 14px;
  color: var(--text-mute);
}

/* ============ SELECTION GROUPS ============ */
.selection-group {
  margin-bottom: 26px;
}

.selection-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ============ ROLE GRID ============ */
.role-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.role-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 10px;
  background: var(--bg-secondary);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
  position: relative;
}

.role-card:hover {
  border-color: rgba(56, 189, 248, 0.35);
  background: rgba(56, 189, 248, 0.04);
}

.role-card.selected {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.role-card.selected::after {
  content: "✓";
  position: absolute;
  top: 7px;
  right: 9px;
  width: 18px;
  height: 18px;
  background: var(--accent);
  color: #0f172a;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 18px;
}

.role-icon {
  font-size: 26px;
}

.role-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.role-desc {
  font-size: 11px;
  color: var(--text-mute);
}

/* ============ EXPERIENCE OPTIONS ============ */
.experience-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.experience-option {
  display: block;
  cursor: pointer;
}

.experience-option input[type="radio"] {
  display: none;
}

.option-content {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.experience-option:hover .option-content {
  border-color: rgba(56, 189, 248, 0.35);
  background: rgba(56, 189, 248, 0.04);
}

.experience-option input:checked + .option-content {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.option-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.option-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.option-text strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.option-text span {
  font-size: 12px;
  color: var(--text-mute);
}

/* ============ MARKET GRID ============ */
.market-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.market-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-secondary);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.market-card:hover {
  border-color: rgba(56, 189, 248, 0.35);
  background: rgba(56, 189, 248, 0.04);
}

.market-card.selected {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.market-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.market-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.market-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.market-desc {
  font-size: 11px;
  color: var(--text-mute);
}

.market-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s;
  flex-shrink: 0;
}

.market-card.selected .market-check {
  opacity: 1;
  transform: scale(1);
}

/* ============ FREQUENCY GRID ============ */
.frequency-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.frequency-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 10px;
  background: var(--bg-secondary);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}

.frequency-card:hover {
  border-color: rgba(56, 189, 248, 0.35);
  background: rgba(56, 189, 248, 0.04);
}

.frequency-card.selected {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.frequency-icon {
  font-size: 24px;
}

.frequency-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}

.frequency-desc {
  font-size: 10px;
  color: var(--text-mute);
}

/* ============ BANK GRID ============ */
.bank-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.bank-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 18px 10px;
  background: var(--bg-secondary);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
  position: relative;
}

.bank-card:hover {
  border-color: rgba(56, 189, 248, 0.35);
  background: rgba(56, 189, 248, 0.04);
}

.bank-card.selected {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.bank-flag {
  font-size: 28px;
}

.bank-name {
  font-size: 10px;
  color: var(--text-mute);
  line-height: 1.3;
}

.bank-short {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.bank-check {
  position: absolute;
  top: 7px;
  right: 9px;
  width: 18px;
  height: 18px;
  background: var(--accent);
  color: #0f172a;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s;
}

.bank-card.selected .bank-check {
  opacity: 1;
  transform: scale(1);
}

/* ============ TOPIC GRID ============ */
.topic-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.topic-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 15px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 24px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
  transition: all 0.2s;
  user-select: none;
}

.topic-chip:hover {
  border-color: rgba(56, 189, 248, 0.35);
  background: rgba(56, 189, 248, 0.04);
  color: var(--text);
}

.topic-chip.selected {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

.topic-icon {
  font-size: 14px;
}

/* ============ SUCCESS SCREEN ============ */
.success-content {
  text-align: center;
  padding: 32px 0;
}

.success-icon {
  font-size: 64px;
  display: block;
  margin-bottom: 20px;
  animation: popIn 0.5s ease;
}

@keyframes popIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  60% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.success-content > p {
  font-size: 14px;
  color: var(--text-mute);
  margin-bottom: 28px;
}

.recommendations {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: left;
  margin-bottom: 28px;
}

.recommendations h3 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 14px;
}

.recommendation-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.recommendation-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.rec-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.rec-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-mute);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .register-branding {
    flex: 0 0 38%;
    padding: 48px 36px;
  }
  .branding-title {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .register-container {
    flex-direction: column;
  }

  .register-branding {
    flex: none;
    padding: 32px 24px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .branding-features,
  .branding-testimonial {
    display: none;
  }

  .branding-title {
    font-size: 22px;
    margin-bottom: 8px;
  }
  .branding-desc {
    font-size: 14px;
    margin-bottom: 0;
  }

  .register-form-section {
    padding: 32px 24px;
  }

  .role-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .frequency-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bank-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .market-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .register-form-section {
    padding: 24px 16px;
  }
  .role-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .step-label {
    display: none;
  }

  .step-actions {
    flex-direction: column-reverse;
  }

  .step-actions .btn-secondary {
    width: 100%;
  }
}
