/*
Prime Forms Stylesheet
Scope: Form components (containers, headers, inputs, selects, buttons, dividers)
Note: Keep component-specific overrides in component CSS; this file should remain generic and reusable.
*/
/* AVOCAT — Padrão PRIME para Formulários */
.cl-wrapper {
  max-width: 950px;
  margin: 0 auto;
  margin-top: 25px;
  margin-bottom: 45px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.cl-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(148,163,184,.25);
}

.cl-header { display: flex; align-items: center; gap: 12px; }
.cl-header i { font-size: 24px; color: var(--accent-1); }
.cl-header h2 { margin: 0; font-size: 1.55rem; font-weight: 800; color: #0f172a; }
.cl-sub { margin-top: 4px; color: #64748b; font-size: .93rem; }

label.form-label { font-weight: 600; margin-top: 16px; color: #1e293b; }

.form-control, .form-select {
  padding: 11px 13px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  font-size: .95rem;
  transition: .18s;
}

.form-control:focus, .form-select:focus {
  background: #ffffff;
  border-color: #0ea5e9 !important;
  box-shadow: 0 0 0 2px rgba(14,165,233,.25);
}

.btn-pill { border-radius: 999px !important; padding: 11px 22px !important; font-weight: 700 !important; font-size: .95rem !important; }
.btn-secondary { border-radius: 999px; }

.cl-form-actions {
  position: sticky;
  bottom: 14px;
  z-index: 15;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin: 24px -6px -8px;
  padding: 12px;
  border: 1px solid rgba(203,213,225,.85);
  border-radius: 16px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 14px 34px rgba(15,23,42,.12);
  backdrop-filter: blur(10px);
}

.cl-form-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cl-divider { height: 1px; background: rgba(148,163,184,.35); margin: 18px 0 6px; }

/* AVOCAT — Clientes: cadastro assistido */
.cliente-onboarding-page {
  max-width: 1080px;
}

.cliente-onboarding-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--title-hero-gradient);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.cliente-onboarding-hero::after {
  content: "";
  position: absolute;
  inset: auto -45px -70px auto;
  width: 210px;
  height: 210px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
}

.cliente-onboarding-hero .cl-header i,
.cliente-onboarding-hero .cl-header h2,
.cliente-onboarding-hero .cl-sub {
  color: #fff;
}

.cliente-onboarding-hero .cl-sub {
  max-width: 620px;
  opacity: .84;
}

.cliente-onboarding-score {
  position: relative;
  z-index: 1;
  min-width: 124px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 20px;
  background: rgba(255,255,255,.14);
  text-align: center;
  box-shadow: 0 18px 38px rgba(15,23,42,.18);
}

.cliente-onboarding-score span {
  display: block;
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
}

.cliente-onboarding-score small {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,.82);
  font-weight: 700;
}

.cliente-onboarding-card {
  padding: 0;
  overflow: hidden;
}

.cliente-wizard-progress {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(203,213,225,.7);
  border-bottom: 1px solid rgba(148,163,184,.28);
}

.cliente-step-pill {
  appearance: none;
  border: 0;
  background: #f8fafc;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 66px;
  padding: 12px;
  font-weight: 800;
  transition: .18s ease;
}

.cliente-step-pill span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #e2e8f0;
  color: #475569;
}

.cliente-step-pill.active {
  background: #e9f7fb;
  color: #0f5f7a;
}

.cliente-step-pill.active span,
.cliente-step-pill.done span {
  background: linear-gradient(135deg, #0ea5e9, #14b8a6);
  color: #fff;
}

.cliente-step-pill.done {
  color: #13866f;
}

.cliente-wizard-bar {
  height: 8px;
  background: #e2e8f0;
}

.cliente-wizard-bar div {
  width: 25%;
  height: 100%;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(90deg, #0ea5e9, #14b8a6, #e2a037);
  transition: width .2s ease;
}

.cliente-wizard-step {
  display: none;
  padding: 28px 30px 12px;
}

.cliente-wizard-step.active {
  display: block;
  animation: clienteStepIn .18s ease-out;
}

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

.cliente-step-heading {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.cliente-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #e9f7fb;
  color: #0f8faf;
  font-size: 1.25rem;
  box-shadow: inset 0 0 0 1px rgba(14,165,233,.16);
}

.cliente-step-heading h3 {
  margin: 0;
  color: #0f172a;
  font-size: 1.35rem;
  font-weight: 900;
}

.cliente-step-heading p {
  margin: 3px 0 0;
  color: #64748b;
}

.cliente-form-grid,
.cliente-review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 18px;
}

.cliente-grid-wide {
  grid-column: 1 / -1;
}

.cliente-review-card {
  min-height: 126px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(148,163,184,.28);
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(248,250,252,.94));
  box-shadow: 0 12px 28px rgba(15,23,42,.08);
}

.cliente-review-card small {
  display: block;
  color: #64748b;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cliente-review-card strong {
  display: block;
  margin-top: 8px;
  color: #0f172a;
  font-size: 1.08rem;
}

.cliente-review-card span {
  display: block;
  margin-top: 6px;
  color: #64748b;
}

.cliente-onboarding-card .cl-form-actions {
  margin: 14px 24px 22px;
}

@media (max-width: 576px) {
  .cl-wrapper {
    margin-bottom: 96px;
  }

  .cl-card {
    padding: 22px 18px;
  }

  .cl-form-actions {
    bottom: 10px;
    align-items: stretch;
    flex-direction: column;
  }

  .cl-form-actions .btn {
    width: 100%;
  }

  .cliente-onboarding-hero {
    align-items: stretch;
    flex-direction: column;
  }

  .cliente-onboarding-score {
    width: 100%;
  }

  .cliente-wizard-progress {
    grid-template-columns: 1fr;
  }

  .cliente-step-pill {
    justify-content: flex-start;
    min-height: 52px;
  }

  .cliente-wizard-step {
    padding: 22px 18px 8px;
  }

  .cliente-step-heading {
    flex-direction: column;
  }

  .cliente-form-grid,
  .cliente-review-grid {
    grid-template-columns: 1fr;
  }

  .cliente-onboarding-card .cl-form-actions {
    margin: 14px 14px 18px;
  }
}

/* AVOCAT — Clientes: listagem */
.clientes-list-page.cl-wrapper {
  max-width: 1100px;
  margin-top: 20px;
  gap: 18px;
}

.clientes-list-page .cl-card {
  border-radius: 16px;
  padding: 20px 24px;
  border: 1px solid rgba(148, 163, 184, .28);
}

.clientes-list-page .cl-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: #fff;
  background: var(--title-hero-gradient);
  box-shadow: var(--title-hero-shadow, 0 20px 50px rgba(18, 53, 101, .18));
  border-color: rgba(255,255,255,.08);
}

.clientes-list-page .cl-hero::after {
  content: "";
  position: absolute;
  right: -58px;
  bottom: -86px;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
}

.clientes-list-page .cl-hero > * {
  position: relative;
  z-index: 1;
}

.clientes-list-page .cl-header {
  margin-bottom: 2px;
}

.clientes-list-page .cl-header i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  color: #fff;
  background: var(--title-hero-icon-bg, rgba(255,255,255,.14));
  box-shadow: inset 0 0 0 1px var(--title-hero-icon-border, rgba(255,255,255,.18));
  font-size: 22px;
}

.clientes-list-page .cl-header h2 {
  font-size: 1.45rem;
  color: #fff;
}

.clientes-list-page .cl-sub {
  margin: 0;
  font-size: .92rem;
  color: var(--title-hero-text-soft, rgba(255,255,255,.86));
}

.clientes-list-page .cl-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.clientes-list-page .cl-actions .btn {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 9px 16px;
  font-size: .9rem;
  font-weight: 700;
}

.clientes-list-page .btn-filter {
  border-radius: 999px;
  padding: 9px 18px;
  font-weight: 700;
}

.clientes-list-page .cl-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 6px;
}

.clientes-list-page .cl-col-name {
  width: 38%;
}

.clientes-list-page .cl-col-phone {
  width: 20%;
}

.clientes-list-page .cl-col-email {
  width: 30%;
}

.clientes-list-page .cl-col-actions {
  width: 12%;
}

.clientes-list-page .cl-table thead th {
  background: #0f172a;
  color: #e5e7eb;
  font-weight: 700;
  font-size: .85rem;
  padding: 10px 12px;
  border: 0;
  white-space: nowrap;
}

.clientes-list-page .cl-table tbody tr {
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(15, 23, 42, .08);
  border-radius: 10px;
}

.clientes-list-page .cl-table tbody td {
  padding: 12px;
  font-size: .92rem;
  color: #0f172a;
  vertical-align: middle;
}

.clientes-list-page .cl-table tbody tr td:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.clientes-list-page .cl-table tbody tr td:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.clientes-list-page .cl-muted {
  color: #64748b;
  font-size: .9rem;
}

.clientes-list-page .cl-actions-col {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
  white-space: nowrap;
  min-width: 160px;
}

.clientes-list-page .cl-actions-col form {
  display: inline-flex;
  margin: 0;
}

.clientes-list-page .cl-actions-col .btn {
  border-radius: 10px;
  padding: 5px 7px;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1;
}

.clientes-list-page .cl-mobile-card {
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, .25);
  box-shadow: 0 1px 4px rgba(15, 23, 42, .06);
}

.clientes-list-page .cl-mobile-card .card-title {
  font-weight: 800;
  color: #0f172a;
}

.clientes-list-page .cl-mobile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.clientes-list-page .cl-mobile-actions .btn {
  border-radius: 999px;
  padding: 7px 12px;
  font-size: .85rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .clientes-list-page .cl-card {
    padding: 18px;
  }

  .clientes-list-page .cl-table thead {
    display: none;
  }

  .clientes-list-page .cl-table tbody tr {
    display: block;
    margin-bottom: 12px;
  }

  .clientes-list-page .cl-table tbody td {
    display: flex;
    justify-content: space-between;
    gap: 8px;
  }

  .clientes-list-page .cl-table tbody td::before {
    content: attr(data-label);
    font-weight: 700;
    color: #0f172a;
  }
}

/* =========================================================
   AVOCAT — PRIME PROCESSOS
   Compatibilidade para templates de processos que usam prefixo pr-*
   ========================================================= */
.pr-wrapper {
  max-width: 1040px;
  margin: 25px auto 45px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.pr-hero,
.pr-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px 30px;
  box-shadow: var(--shadow-sm, 0 10px 30px rgba(15, 23, 42, .08));
  border: 1px solid rgba(148, 163, 184, .25);
}

.pr-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--title-hero-gradient);
  box-shadow: var(--title-hero-shadow, 0 20px 50px rgba(18, 53, 101, .18));
  border-color: rgba(255,255,255,.08);
}

.pr-hero::after {
  content: "";
  position: absolute;
  right: -58px;
  bottom: -86px;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
}

.pr-titlebox {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pr-titlebox i {
  font-size: 24px;
  color: var(--accent-1, #0ea5e9);
}

.pr-titlebox h2 {
  margin: 0;
  font-size: 1.55rem;
  font-weight: 800;
  color: #0f172a;
}

.pr-sub,
.pr-help {
  color: #64748b;
  font-size: .93rem;
}

.pr-sub {
  margin: 6px 0 0;
}

.pr-hero .pr-titlebox,
.pr-hero .pr-sub {
  position: relative;
  z-index: 1;
}

.pr-hero .pr-titlebox i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  color: #fff;
  background: var(--title-hero-icon-bg, rgba(255,255,255,.14));
  box-shadow: inset 0 0 0 1px var(--title-hero-icon-border, rgba(255,255,255,.18));
}

.pr-hero .pr-titlebox h2,
.pr-hero .pr-sub {
  color: #fff;
}

.pr-hero .pr-sub {
  max-width: 720px;
  opacity: .86;
}

.pr-help {
  margin-top: 6px;
  line-height: 1.45;
}

.pr-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}

.pr-span {
  grid-column: 1 / -1;
}

.pr-divider {
  height: 1px;
  background: rgba(148, 163, 184, .35);
  margin: 8px 0 2px;
}

.pr-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.pr-actions .btn,
.pr-card .btn {
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 700;
}

.tarefa-auditoria-card {
  padding: 22px 24px;
}

.tarefa-auditoria-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.tarefa-auditoria-head h3 {
  margin: 0;
  color: #0f172a;
  font-size: 1.05rem;
  font-weight: 800;
}

.tarefa-auditoria-head h3 i {
  color: #2563eb;
  margin-right: 8px;
}

.tarefa-auditoria-head p {
  margin: 4px 0 0;
  color: #64748b;
  font-size: .9rem;
}

.tarefa-auditoria-head > span {
  flex: 0 0 auto;
  border-radius: 999px;
  background: #eef2ff;
  color: #3730a3;
  font-size: .78rem;
  font-weight: 800;
  padding: 6px 10px;
}

.tarefa-auditoria-list {
  display: grid;
  gap: 10px;
}

.tarefa-auditoria-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid rgba(148, 163, 184, .28);
  border-radius: 12px;
  background: #f8fafc;
  padding: 12px 14px;
}

.tarefa-auditoria-item strong,
.tarefa-auditoria-item small,
.tarefa-auditoria-item p {
  display: block;
}

.tarefa-auditoria-item strong {
  color: #0f172a;
  font-size: .95rem;
}

.tarefa-auditoria-item small,
.tarefa-auditoria-item p,
.tarefa-auditoria-empty {
  color: #64748b;
  font-size: .86rem;
}

.tarefa-auditoria-item p {
  margin: 4px 0 0;
}

.tarefa-auditoria-status {
  flex: 0 0 auto;
  max-width: 220px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, .35);
  color: #334155;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.3;
  padding: 6px 10px;
  text-align: right;
}

.tarefa-auditoria-empty {
  border: 1px dashed rgba(148, 163, 184, .55);
  border-radius: 12px;
  background: #f8fafc;
  padding: 14px;
}

.pr-polos {
  margin-top: 14px;
  padding: 16px;
  border: 1px dashed rgba(148, 163, 184, .65);
  border-radius: 14px;
  background: #f8fafc;
}

.pr-polos h6 {
  margin: 0 0 12px;
  font-weight: 800;
  color: #1e293b;
}

.pr-polo-item {
  margin-bottom: 12px;
}

.pr-polo-item:last-child {
  margin-bottom: 0;
}

.pr-polo-item label,
.pr-polos label {
  display: block;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
}

.pr-card table.table {
  margin-bottom: 0;
  background: #ffffff;
}

.pr-card .table thead th {
  border-top: 0;
  color: #334155;
  font-weight: 800;
  background: #f8fafc;
}

.pr-card .table tbody td {
  vertical-align: middle;
}

/* AVOCAT — Processos: cadastro e edição premium */
.process-form-page {
  max-width: 1360px;
}

.process-form-page .process-form-hero {
  position: relative;
  overflow: hidden;
  background: var(--title-hero-gradient);
  color: #fff;
}

.process-form-page .process-form-hero::after {
  content: "";
  position: absolute;
  right: -58px;
  bottom: -86px;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
}

.process-form-page .process-form-hero .pr-titlebox,
.process-form-page .process-form-hero .pr-sub {
  position: relative;
  z-index: 1;
}

.process-form-page .process-form-hero .pr-titlebox i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  color: #fff;
  background: var(--title-hero-icon-bg, rgba(255,255,255,.14));
  box-shadow: inset 0 0 0 1px var(--title-hero-icon-border, rgba(255,255,255,.18));
}

.process-form-page .process-form-hero .pr-titlebox h2,
.process-form-page .process-form-hero .pr-sub {
  color: #fff;
}

.process-form-page .process-form-hero .pr-sub {
  max-width: 720px;
  opacity: .86;
}

.process-form-page .process-form-card {
  padding: 0;
  overflow: visible;
}

.process-form-page .process-form {
  padding: 28px 30px 24px;
}

.process-form-page .process-form-grid {
  gap: 20px 22px;
}

.process-form-page label.form-label {
  margin-top: 0;
  color: #243247;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.process-form-page .form-control,
.process-form-page .form-select {
  min-height: 46px;
  border-color: #d7e0ea;
  background: #fbfcfe;
  box-shadow: none;
}

.process-form-page textarea.form-control {
  min-height: 112px;
}

.process-form-page .pr-help {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin-top: 8px;
  color: #6b7a90;
  font-size: .82rem;
}

.process-form-page .pr-help::before {
  content: "i";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  border-radius: 999px;
  color: #0f6f8d;
  background: #e9f7fb;
  font-size: .68rem;
  font-weight: 900;
}

.process-form-page .pr-divider {
  position: relative;
  height: auto;
  min-height: 30px;
  margin: 8px 0 -2px;
  background: transparent;
  border-top: 1px solid rgba(148,163,184,.25);
}

.process-form-page .pr-divider::after {
  content: attr(data-label);
  position: relative;
  top: -12px;
  display: inline-flex;
  padding: 4px 12px;
  border: 1px solid rgba(148,163,184,.22);
  border-radius: 999px;
  color: #31566b;
  background: #f8fafc;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.process-form-page .pr-polos {
  border-style: solid;
  border-color: rgba(14,165,233,.22);
  background:
    linear-gradient(180deg, rgba(233,247,251,.80), rgba(248,250,252,.92));
}

.process-form-page .pr-polos h6 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.process-form-page .pr-polos h6::before {
  content: "\f0c0";
  color: #0f8faf;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.process-form-page .pr-polo-item,
.process-form-page #polos-clientes > div:not(:first-child) {
  padding: 12px;
  border: 1px solid rgba(203,213,225,.7);
  border-radius: 14px;
  background: rgba(255,255,255,.86);
}

.process-form-page .pr-actions {
  position: sticky;
  bottom: 14px;
  z-index: 12;
  margin: 26px -6px -6px;
  padding: 12px;
  border: 1px solid rgba(203,213,225,.85);
  border-radius: 17px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 14px 34px rgba(15,23,42,.12);
  backdrop-filter: blur(10px);
}

.process-form-page .pr-actions .btn-primary {
  border: 0;
  background: linear-gradient(135deg, #174a85, #236da9);
  box-shadow: 0 8px 18px rgba(23,74,133,.18);
}

/* Select2 alinhado ao padrão PRIME */
.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
  min-height: 44px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
}

.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--default .select2-selection--single:focus,
.select2-container--default .select2-selection--multiple:focus {
  background: #ffffff;
  border-color: #0ea5e9 !important;
  box-shadow: 0 0 0 2px rgba(14, 165, 233, .25);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  border-radius: 999px;
  border: 1px solid rgba(14, 165, 233, .35);
  background: rgba(14, 165, 233, .10);
  color: #0f172a;
  padding: 3px 8px;
}

@media (max-width: 768px) {
  .pr-wrapper {
    margin-top: 16px;
    margin-bottom: 28px;
  }

  .pr-hero,
  .pr-card {
    padding: 20px 18px;
    border-radius: 16px;
  }

  .pr-grid {
    grid-template-columns: 1fr;
  }

  .pr-actions {
    justify-content: stretch;
  }

  .pr-actions .btn {
    width: 100%;
  }

  .process-form-page .process-form {
    padding: 22px 18px 18px;
  }

  .process-form-page .pr-actions {
    bottom: 10px;
    align-items: stretch;
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }
}
