:root {
  --blue: #087a4e;
  --blue-deep: #06452f;
  --blue-bright: #0b9962;
  --cyan: #43c78d;
  --yellow: #b9e769;
  --green: #0b9962;
  --red: #c92d3a;
  --ink: #13271f;
  --muted: #64756d;
  --line: #dfe9e4;
  --surface: #f3f8f5;
  --white: #fff;
  --shadow: 0 16px 48px rgba(6, 69, 47, 0.1);
  --radius: 16px;
  --radius-sm: 10px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font:
    400 15px/1.55 Inter,
    system-ui,
    sans-serif;
  background: var(--surface);
}
button,
input,
select,
textarea {
  font: inherit;
}
a {
  color: var(--blue-bright);
  text-decoration: none;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: Manrope, Inter, sans-serif;
  line-height: 1.08;
  letter-spacing: -0.035em;
}
h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}
h2 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}
small {
  display: block;
  color: var(--muted);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.08em;
}
.brand-lockup--dark {
  color: var(--blue);
}
.eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-bright);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.eyebrow--light {
  color: #8bdbff;
}
.button {
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}
.button:hover {
  transform: translateY(-1px);
}
.button--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 20px rgba(7, 26, 120, 0.18);
}
.button--primary:hover {
  background: var(--blue-deep);
}
.button--secondary {
  border-color: #cdd5e6;
  background: #fff;
  color: var(--blue);
}
.button--ghost {
  background: transparent;
  color: inherit;
}
.button--large {
  width: 100%;
  min-height: 54px;
  font-size: 16px;
}
.button--small {
  min-height: 36px;
  padding: 7px 12px;
  font-size: 13px;
}
.button--block {
  width: 100%;
}
.button--danger {
  background: #fff0f1;
  color: var(--red);
  border-color: #ffcbd0;
}
.button--whatsapp {
  background: #19a957;
  color: #fff;
}
.button.disabled {
  opacity: 0.35;
  pointer-events: none;
}
.field {
  display: grid;
  gap: 7px;
  color: #303b53;
  font-size: 13px;
  font-weight: 700;
}
.field input,
.field select,
.field textarea,
.search-field input {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #d8deea;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: 0.2s;
}
.field textarea {
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus,
.search-field input:focus {
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 3px rgba(20, 89, 217, 0.1);
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-stack {
  display: grid;
  gap: 15px;
}
.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}
.check-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
}
.form-heading {
  margin-bottom: 24px;
}
.form-heading h2 {
  margin-bottom: 8px;
  font-size: 2rem;
}
.form-heading p,
.form-footer {
  color: var(--muted);
}
.form-footer {
  text-align: center;
  margin: 20px 0 0;
  font-size: 13px;
}
.step-label {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.flash {
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 13px;
}
.flash--success {
  background: #eaf9f0;
  color: #08733a;
}
.flash--error {
  background: #fff0f1;
  color: #a5212e;
}
.flash--info {
  background: #edf5ff;
  color: #1253a4;
}
.flash button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.invite-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(520px, 0.95fr);
}
.invite-story {
  position: relative;
  overflow: hidden;
  padding: 48px clamp(40px, 6vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  background:
    radial-gradient(
      circle at 15% 90%,
      rgba(67, 199, 141, 0.5),
      transparent 38%
    ),
    linear-gradient(145deg, var(--blue-deep), var(--blue));
}
.invite-copy {
  position: relative;
  z-index: 1;
  max-width: 660px;
}
.invite-copy .eyebrow {
  color: var(--yellow);
}
.invite-copy h1 {
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 6vw, 6.6rem);
  letter-spacing: -0.07em;
}
.invite-copy p {
  max-width: 590px;
  color: #c9d5ff;
  font-size: 18px;
}
.inviter-chip {
  width: max-content;
  max-width: 100%;
  margin-top: 36px;
  padding: 9px 14px 9px 9px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
}
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: #e8edff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}
.story-stat {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 18px;
}
.story-stat strong {
  font: 800 52px/1 Manrope;
  color: var(--yellow);
}
.story-stat span {
  max-width: 190px;
  color: #d4dcff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.registration-panel {
  padding: 50px clamp(36px, 7vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}
.registration-panel > * {
  width: 100%;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.mobile-brand {
  display: none;
}
.auth-page {
  background: radial-gradient(circle at 50% 10%, #1738a7, var(--blue-deep) 60%);
}
.auth-shell {
  min-height: 100vh;
  padding: 35px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.auth-shell > .brand-lockup {
  color: #fff;
}
.auth-card {
  width: min(100%, 460px);
  padding: 38px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
  text-align: center;
}
.auth-card h1 {
  margin-bottom: 10px;
  font-size: 2rem;
}
.auth-card > p {
  color: var(--muted);
}
.auth-card .field {
  text-align: left;
}
.icon-badge {
  width: 54px;
  height: 54px;
  margin: 0 auto 20px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #edf2ff;
  color: var(--blue);
  font-size: 24px;
  font-weight: 800;
}
.local-code {
  margin: 16px 0;
  padding: 10px;
  border: 1px dashed #dfb500;
  border-radius: 8px;
  background: #fffbea;
  color: #6e5900;
}
.otp-input {
  text-align: center;
  font: 700 28px/1 monospace;
  letter-spacing: 0.45em;
  padding-left: 1.1em !important;
}
.inline-form {
  margin-top: 18px;
}
.link-button {
  border: 0;
  background: transparent;
  color: var(--blue-bright);
  font-weight: 700;
  cursor: pointer;
}
.legal-header {
  padding: 25px 6vw;
  background: var(--blue);
}
.legal-document {
  width: min(780px, calc(100% - 40px));
  margin: 60px auto;
  padding: 50px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.legal-document h1 {
  margin-bottom: 20px;
}
.legal-document h2 {
  margin-top: 34px;
  font-size: 1.25rem;
}
.legal-document p {
  color: #4d5870;
}
.legal-updated {
  margin-top: 40px;
  font-size: 13px;
}
.error-code {
  font: 800 72px/1 Manrope;
  color: var(--blue);
}
.participant-page {
  background: #f3f6fb;
}
.participant-header {
  height: 72px;
  padding: 0 max(24px, calc((100vw - 1160px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--blue);
  color: #fff;
}
.participant-main {
  width: min(1160px, calc(100% - 40px));
  margin: 42px auto 80px;
}
.welcome-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.welcome-block h1 {
  margin-bottom: 8px;
}
.welcome-block p {
  color: var(--muted);
}
.participant-badge,
.status {
  padding: 5px 9px;
  border-radius: 99px;
  background: #edf1f7;
  color: #4c5870;
  font-size: 11px;
  font-weight: 800;
}
.participant-badge,
.status--success {
  background: #e6f8ed;
  color: #08743a;
}
.status--warning {
  background: #fff4d8;
  color: #8b6000;
}
.share-hero {
  position: relative;
  overflow: hidden;
  margin: 28px 0;
  padding: 42px;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr 220px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: 0 20px 45px rgba(6, 69, 47, 0.2);
}
.share-hero h2 {
  max-width: 620px;
  font-size: 2.2rem;
}
.share-hero p {
  color: #d8e3ff;
}
.share-url {
  max-width: 580px;
  margin: 24px 0 14px;
  padding: 8px 8px 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: rgba(0, 0, 0, 0.12);
}
.share-url code {
  overflow: hidden;
  text-overflow: ellipsis;
}
.share-url button {
  padding: 8px 13px;
  border: 0;
  border-radius: 7px;
  background: #fff;
  color: var(--blue);
  font-weight: 700;
  cursor: pointer;
}
.share-mark {
  align-self: center;
  justify-self: center;
  color: var(--yellow);
  font: 800 150px/1 Manrope;
  letter-spacing: -0.14em;
  transform: rotate(-5deg);
}
.participant-metrics,
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.participant-metrics article,
.metric-card {
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.participant-metrics span,
.metric-label {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.participant-metrics strong,
.metric-card strong {
  display: block;
  font: 800 2.3rem/1 Manrope;
}
.participant-metrics small,
.metric-card small {
  margin-top: 7px;
}
.participant-grid,
.dashboard-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 18px;
}
.panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 4px 20px rgba(20, 35, 80, 0.035);
}
.panel--wide {
  min-width: 0;
}
.panel-header,
.page-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.panel-header h2 {
  margin-bottom: 0;
}
.panel-header a {
  font-size: 13px;
  font-weight: 700;
}
.level-card > strong,
.big-number {
  display: block;
  margin: 20px 0;
  font: 800 2.3rem/1 Manrope;
}
.progress {
  height: 8px;
  border-radius: 99px;
  overflow: hidden;
  background: #e9edf5;
}
.progress span {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--blue-bright));
}
.text-link {
  display: block;
  margin-top: 18px;
  font-weight: 700;
}
.danger-zone {
  margin-top: 35px;
  padding: 20px;
  border: 1px solid #f0d7da;
  border-radius: 12px;
  background: #fff;
}
.danger-zone summary {
  cursor: pointer;
  font-weight: 700;
}
.danger-zone p {
  margin-top: 15px;
  color: var(--muted);
}
.admin-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 260px 1fr;
}
.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  color: #fff;
  background: linear-gradient(180deg, var(--blue), var(--blue-deep));
}
.campaign-pill {
  margin: 28px 0 24px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
}
.campaign-pill small,
.sidebar-profile small {
  color: #aab8ec;
}
.campaign-pill strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: #8190c6;
}
.status-dot--active,
.campaign-pill .status-dot {
  background: #36dd75;
  box-shadow: 0 0 0 4px rgba(54, 221, 117, 0.12);
}
.side-nav {
  display: grid;
  gap: 5px;
}
.side-nav a {
  padding: 11px 12px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #bdc8ed;
  font-size: 13px;
  font-weight: 600;
}
.side-nav a:hover,
.side-nav a.active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.side-nav a.active {
  box-shadow: inset 3px 0 var(--yellow);
}
.side-nav span {
  width: 20px;
  text-align: center;
}
.sidebar-profile {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}
.logout-button {
  width: 100%;
  margin-top: 12px;
  padding: 8px;
  border: 0;
  background: transparent;
  color: #9faddd;
  text-align: left;
  cursor: pointer;
}
.admin-main {
  min-width: 0;
}
.topbar {
  height: 70px;
  padding: 0 38px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
}
.topbar-date {
  color: var(--muted);
  font-size: 12px;
}
.menu-button {
  display: none;
  border: 0;
  background: transparent;
  font-size: 22px;
}
.admin-content {
  padding: 38px;
  max-width: 1500px;
  margin: 0 auto;
}
.page-heading {
  margin-bottom: 28px;
}
.page-heading h1 {
  margin-bottom: 8px;
  font-size: 2.25rem;
}
.page-heading p {
  margin: 0;
  color: var(--muted);
}
.metric-card {
  position: relative;
}
.metric-card--hero {
  border-color: var(--blue);
  color: #fff;
  background: linear-gradient(145deg, var(--blue), #153fc4);
}
.metric-card--hero .metric-label,
.metric-card--hero small {
  color: #c6d2ff;
}
.metric-icon {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: #e9efff;
  color: var(--blue);
}
.metric-icon--green {
  background: #e5f8ed;
  color: #078041;
}
.metric-icon--yellow {
  background: #fff5d1;
  color: #936800;
}
.goal-number {
  margin: 26px 0 16px;
}
.goal-number strong {
  font: 800 2.7rem/1 Manrope;
}
.goal-number span {
  color: var(--muted);
}
.goal-panel p,
.prose-panel p {
  color: var(--muted);
}
.table-wrap {
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
th {
  padding: 11px 13px;
  border-bottom: 1px solid var(--line);
  color: #778096;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
td {
  padding: 14px 13px;
  border-bottom: 1px solid #edf0f5;
  font-size: 13px;
}
td strong,
td small {
  display: block;
}
td small {
  margin-top: 3px;
}
.empty-state {
  padding: 36px;
  text-align: center;
  color: var(--muted);
}
.state-ok {
  color: var(--green);
  font-size: 1.5rem !important;
}
.settings-form {
  max-width: 950px;
}
.form-section + .form-section {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.form-section h2 {
  font-size: 1.2rem;
}
.form-section .field + .field {
  margin-top: 14px;
}
.form-actions {
  margin-top: 28px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.integration-status {
  margin-bottom: 26px;
  padding: 15px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f5f7fb;
}
.integration-status small {
  margin-top: 3px;
}
.tab-nav {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 4px;
  overflow-x: auto;
}
.tab-nav a {
  padding: 11px 13px;
  border-bottom: 2px solid transparent;
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.tab-nav a.active,
.tab-nav a:hover {
  border-color: var(--blue-bright);
  color: var(--blue);
}
.metric-grid--compact {
  margin-bottom: 18px;
}
.filter-bar {
  margin-bottom: 18px;
}
.search-field {
  display: flex;
  gap: 8px;
}
.pagination {
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
}
.conversion-visual {
  min-height: 180px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.conversion-visual > span {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, #fff 55%, transparent 57%),
    conic-gradient(var(--blue-bright) calc(var(--value) * 1%), #e8edf6 0);
  font: 800 1.8rem Manrope;
}
.recipient-picker {
  margin-top: 25px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.recipient-picker header {
  padding: 16px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  background: #f8f9fc;
}
.recipient-picker h2 {
  margin-bottom: 3px;
  font-size: 1.1rem;
}
.recipient-picker p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
.recipient-picker input[type="search"] {
  max-width: 280px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.recipient-list {
  max-height: 360px;
  overflow: auto;
}
.recipient-list label {
  padding: 11px 16px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.recipient-list label:hover {
  background: #f7f9fd;
}
.recipient-list label small {
  margin-top: 2px;
}
.recipient-list input {
  accent-color: var(--blue);
}
.report-hero {
  margin-bottom: 25px;
  padding: 45px;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(130deg, var(--blue-deep), var(--blue-bright));
}
.report-hero .eyebrow {
  color: var(--yellow);
}
.report-hero h1 {
  margin-bottom: 8px;
}
.participant-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.participant-header-actions form {
  margin: 0;
}
@media (max-width: 1100px) {
  .invite-layout {
    grid-template-columns: 1fr;
  }
  .invite-story {
    min-height: 500px;
  }
  .registration-panel {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .admin-layout {
    grid-template-columns: 220px 1fr;
  }
  .sidebar {
    padding: 24px 15px;
  }
  .metric-grid,
  .participant-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 820px) {
  .invite-story {
    display: none;
  }
  .mobile-brand {
    margin-bottom: 35px !important;
    display: inline-flex !important;
    color: var(--blue);
  }
  .registration-panel {
    min-height: 100vh;
    padding: 32px 24px;
  }
  .admin-layout {
    display: block;
  }
  .sidebar {
    position: fixed;
    z-index: 30;
    left: 0;
    transform: translateX(-105%);
    width: 270px;
    transition: 0.25s;
  }
  .sidebar.open {
    transform: translateX(0);
    box-shadow: 20px 0 60px rgba(0, 0, 0, 0.3);
  }
  .menu-button {
    display: block;
  }
  .topbar {
    padding: 0 20px;
  }
  .admin-content {
    padding: 25px 20px;
  }
  .dashboard-grid,
  .participant-grid {
    grid-template-columns: 1fr;
  }
  .share-hero {
    grid-template-columns: 1fr;
  }
  .share-mark {
    display: none;
  }
  .participant-header {
    padding: 0 20px;
  }
  .participant-main {
    width: min(100% - 28px, 1160px);
  }
  .page-heading {
    display: block;
  }
  .page-heading > .button {
    margin-top: 18px;
  }
  .participant-metrics,
  .metric-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .field-grid {
    grid-template-columns: 1fr;
  }
  .auth-card {
    padding: 28px 22px;
  }
  .legal-document {
    margin: 20px auto;
    padding: 28px 22px;
  }
  .registration-panel {
    padding: 28px 18px;
  }
  .participant-metrics,
  .metric-grid {
    grid-template-columns: 1fr;
  }
  .share-hero {
    padding: 28px 22px;
  }
  .share-hero h2 {
    font-size: 1.7rem;
  }
  .share-url {
    align-items: stretch;
    flex-direction: column;
  }
  .welcome-block {
    align-items: flex-start;
  }
  .participant-badge {
    margin-top: 8px;
  }
  .admin-content {
    padding: 22px 14px;
  }
  .topbar .button {
    display: none;
  }
  .panel {
    padding: 19px;
  }
  .search-field {
    display: grid;
  }
  .recipient-picker header {
    display: block;
  }
  .recipient-picker input[type="search"] {
    width: 100%;
    margin-top: 12px;
  }
  .form-actions {
    flex-direction: column-reverse;
  }
  .form-actions .button {
    width: 100%;
  }
}
