/* [project]/apps/web/app/styles.css [app-client] (css) */
:root {
  color: #16263c;
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
  background: #f3f6fb;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

button, input, select {
  font: inherit;
}

button {
  cursor: pointer;
}

.brand {
  letter-spacing: 3px;
  font-size: 24px;
  font-weight: 850;
}

.brand span {
  letter-spacing: 2px;
  color: #8badd3;
  margin-top: 5px;
  font-size: 10px;
  display: block;
}

.login-page {
  color: #fff;
  background: radial-gradient(at 85% 15%, #224d78, #0000 65%), #0b1c30;
  flex-direction: column;
  min-height: 100vh;
  padding: 36px 7%;
  display: flex;
}

.login-card {
  color: #182c45;
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 520px;
  margin: 65px auto;
  padding: 40px;
  box-shadow: 0 20px 100px #0004;
}

.login-card h1 {
  margin: 24px 0;
  font-size: 35px;
  line-height: 1.2;
}

.badge {
  letter-spacing: 1px;
  color: #775100;
  background: #fff0cc;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 800;
  display: inline-block;
}

.muted {
  color: #61738b;
  line-height: 1.6;
}

.fine {
  color: #66788c;
  margin-top: 24px;
  font-size: 12px;
  line-height: 1.6;
}

.field {
  flex-direction: column;
  gap: 8px;
  margin: 28px 0 16px;
  font-size: 13px;
  font-weight: 650;
  display: flex;
}

select {
  color: #233b55;
  background: #fff;
  border: 1px solid #cbd6e5;
  border-radius: 8px;
  padding: 13px;
}

.button {
  color: #fff;
  background: #1764cc;
  border: 0;
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 650;
}

.button:disabled {
  opacity: .5;
  cursor: wait;
}

.login-card .button {
  width: 100%;
}

.app-shell {
  min-height: 100vh;
  display: flex;
}

.app-shell aside {
  color: #fff;
  background: #10253e;
  flex-direction: column;
  flex-shrink: 0;
  width: 240px;
  padding: 30px 22px;
  display: flex;
}

.workspace-label {
  color: #a3b9d2;
  margin: 42px 0 18px;
  font-size: 12px;
}

nav {
  gap: 7px;
  display: grid;
}

.nav-item {
  color: #b9c9dc;
  text-align: left;
  background: none;
  border: 0;
  border-radius: 8px;
  padding: 13px 16px;
}

.nav-item:hover, .nav-item.selected {
  color: #fff;
  background: #244568;
}

.sidebar-foot {
  color: #cfdded;
  margin-top: auto;
  padding-top: 40px;
  font-size: 13px;
}

.sidebar-foot small {
  color: #8fabc7;
  margin: 8px 15px;
  display: block;
}

.dot {
  background: #ffce58;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  display: inline-block;
}

.main-area {
  flex: 1;
  min-width: 0;
}

header {
  color: #66788d;
  background: #fff;
  border-bottom: 1px solid #e1e7ef;
  justify-content: space-between;
  align-items: center;
  height: 84px;
  padding: 0 38px;
  font-size: 13px;
  display: flex;
}

.account {
  position: relative;
}

.account-button {
  color: #253c55;
  background: none;
  border: 0;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  display: flex;
}

.avatar {
  color: #175db6;
  background: #dfebfa;
  border-radius: 50%;
  place-items: center;
  width: 34px;
  height: 34px;
  display: grid;
}

.account-menu {
  z-index: 5;
  background: #fff;
  border: 1px solid #dae3ee;
  border-radius: 12px;
  gap: 12px;
  min-width: 240px;
  padding: 20px;
  display: grid;
  position: absolute;
  top: 48px;
  right: 0;
  box-shadow: 0 10px 30px #11294020;
}

.account-menu small {
  color: #64758b;
}

.workspace-main {
  max-width: 1440px;
  margin: auto;
  padding: 42px;
}

.page-heading {
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 32px;
  display: flex;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #6281a2;
  font-size: 12px;
  font-weight: 750;
}

.page-heading h1 {
  letter-spacing: -1px;
  margin: 10px 0;
  font-size: 32px;
}

.cards {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  display: grid;
}

.cards article, .panel {
  background: #fff;
  border: 1px solid #e0e7f0;
  border-radius: 13px;
  padding: 25px;
}

.cards article > span {
  color: #63778e;
  font-size: 13px;
}

.cards h2 {
  margin: 18px 0 10px;
  font-size: 27px;
}

.cards p, .panel p {
  color: #718095;
  font-size: 14px;
  line-height: 1.6;
}

.panel {
  margin-top: 26px;
}

.panel h2 {
  margin-top: 0;
  font-size: 18px;
}

.organisation-list > div {
  border-top: 1px solid #e6ebf2;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  font-size: 14px;
  display: flex;
}

.organisation-list strong {
  flex: 1;
}

.organisation-list span {
  color: #6b7d92;
}

.active-label {
  background: #e5f5ec;
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 12px;
  color: #247b4b !important;
}

.status {
  color: #63778f;
  background: #f0f4fa;
  border-radius: 8px;
  margin: 12px 0;
  padding: 20px;
}

.status.error {
  color: #a33430;
  background: #ffebe9;
}

.status.empty {
  text-align: center;
  border: 1px dashed #ccdae9;
  padding: 40px 20px;
}

@media (max-width: 800px) {
  .app-shell {
    display: block;
  }

  .app-shell aside {
    width: 100%;
    padding: 18px 20px;
  }

  .app-shell aside .brand {
    font-size: 18px;
  }

  .workspace-label {
    margin: 16px 0 10px;
  }

  nav {
    display: flex;
    overflow: auto;
  }

  .nav-item {
    white-space: nowrap;
    padding: 10px 14px;
  }

  .sidebar-foot {
    display: none;
  }

  header {
    height: 65px;
    padding: 0 20px;
  }

  .workspace-main {
    padding: 24px 20px;
  }

  .page-heading {
    display: block;
  }

  .page-heading .badge {
    margin-top: 8px;
  }

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

  .login-card {
    margin: 40px auto;
    padding: 28px;
  }

  .login-card h1 {
    font-size: 29px;
  }

  .organisation-list > div {
    flex-wrap: wrap;
  }

  .account-button {
    font-size: 11px;
  }
}

.configuration-banner {
  color: #664900;
  background: #fff3ce;
  border: 1px solid #ead391;
  border-radius: 12px;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
  padding: 16px;
  display: flex;
}

.market-toolbar, .config-filters, .config-actions, .detail-heading {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin: 20px 0;
  display: flex;
}

.marketplace label {
  flex-direction: column;
  flex: 1;
  gap: 8px;
  min-width: 180px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
}

.marketplace input, .marketplace select, .marketplace textarea {
  color: #152c48;
  width: 100%;
  font: inherit;
  background: #fff;
  border: 1px solid #c9d5e5;
  border-radius: 8px;
  padding: 11px;
}

.marketplace button {
  cursor: pointer;
  color: #173756;
  font: inherit;
  background: #fff;
  border: 1px solid #c9d5e5;
  border-radius: 8px;
  padding: 11px 16px;
}

.marketplace button:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.marketplace .primary-button {
  color: #fff;
  background: #214e7c;
}

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

.config-form h3, .config-form p, .config-form .config-actions {
  grid-column: 1 / -1;
}

.config-form.compact {
  background: #edf3f9;
  margin: 24px 0;
  padding: 20px;
}

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

.marketplace .config-row {
  text-align: left;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px;
  display: flex;
}

.marketplace dl {
  overflow-wrap: anywhere;
}

.marketplace dt {
  text-transform: uppercase;
  color: #647b94;
  margin-top: 15px;
  font-size: 12px;
}

.marketplace dd {
  margin: 5px 0 15px;
}

.marketplace details {
  border-bottom: 1px solid #d7e0ee;
  padding: 12px;
}

.marketplace pre {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font-size: 12px;
}

.form-error {
  color: #9a2424;
  background: #fff0f0;
  border-radius: 8px;
  padding: 14px;
}

@media (max-width: 700px) {
  .config-form {
    grid-template-columns: 1fr;
  }

  .marketplace .config-row {
    flex-direction: column;
    align-items: start;
  }

  .market-toolbar, .config-filters {
    flex-direction: column;
    align-items: stretch;
  }

  .marketplace label {
    min-width: 0;
  }

  .marketplace .panel {
    padding: 16px;
  }
}

.live-status {
  align-items: center;
  gap: 9px;
  margin: 12px 0 20px;
  display: flex;
}

.live-status small {
  margin-left: auto;
}

.metric-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric-cards article p {
  font-size: 12px;
}

.finance-separation {
  border-left: 4px solid #7589a2;
}

.call-grid {
  grid-template-columns: minmax(300px, .8fr) minmax(360px, 1.2fr);
  gap: 18px;
  display: grid;
}

.call-row {
  text-align: left;
  color: #192e48;
  background: #fff;
  border: 0;
  border-bottom: 1px solid #dce4ef;
  justify-content: space-between;
  width: 100%;
  padding: 15px 4px;
  display: flex;
}

.call-row span:first-child {
  flex-direction: column;
  display: flex;
}

.call-state {
  text-transform: capitalize;
  background: #e7edf4;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
}

.call-state.connected {
  background: #dff3e8;
}

.attempt {
  border-bottom: 1px solid #dce4ef;
  justify-content: space-between;
  padding: 12px 0;
  display: flex;
}

.timeline {
  border-left: 2px solid #cdd8e5;
  padding-left: 23px;
}

.timeline li {
  padding: 0 0 18px 8px;
  display: grid;
}

.timeline time, .timeline small {
  color: #647b94;
  font-size: 12px;
}

@media (max-width: 1050px) {
  .metric-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 600px) {
  .metric-cards {
    grid-template-columns: 1fr;
  }

  .live-calls .cards {
    display: grid;
  }
}

.main-area > header {
  z-index: 10;
  gap: 16px;
  position: relative;
}

.workspace-main {
  min-width: 0;
  max-width: none;
}

.live-calls {
  width: 100%;
  min-width: 0;
}

.calls-context {
  color: #718096;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 12px;
  display: flex;
}

.calls-context > span:first-child {
  color: #856216;
}

.calls-toolbar {
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 12px;
  margin: 0 0 24px;
  display: flex;
}

.calls-toolbar label {
  color: #53657b;
  flex-direction: column;
  gap: 7px;
  font-size: 12px;
  font-weight: 650;
  display: flex;
}

.calls-toolbar label:first-child {
  flex: 1;
  min-width: 180px;
  max-width: 360px;
}

.calls-toolbar input, .calls-toolbar select {
  color: #253b55;
  background: #fff;
  border: 1px solid #d5dce6;
  border-radius: 5px;
  min-width: 0;
  height: 40px;
  padding: 8px 12px;
}

.calls-search {
  color: #254768;
  background: #fff;
  border: 1px solid #bac9da;
  border-radius: 5px;
  height: 40px;
  padding: 0 20px;
  font-weight: 600;
}

.live-calls .live-status {
  color: #55697b;
  white-space: nowrap;
  margin: 0 0 10px auto;
  font-size: 12px;
}

.stream-dot {
  background: #d49c25;
  border-radius: 50%;
  width: 7px;
  height: 7px;
}

.stream-dot.live {
  background: #2b9d73;
}

.calls-table-panel {
  background: #fff;
  border: 1px solid #dde3eb;
  border-top: 4px solid #cfd5df;
  border-radius: 5px;
  min-width: 0;
  box-shadow: 0 1px 2px #1f32480a;
}

.calls-table-heading {
  border-bottom: 1px solid #edf0f4;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 18px;
  display: flex;
}

.calls-table-heading h2 {
  color: #384556;
  margin: 0;
  font-size: 19px;
  font-weight: 500;
}

.calls-count {
  color: #718095;
  background: #f2f5f9;
  border-radius: 4px;
  padding: 5px 9px;
  font-size: 12px;
}

.calls-table-scroll {
  max-width: 100%;
  overflow-x: auto;
}

.calls-table {
  border-collapse: collapse;
  text-align: left;
  width: 100%;
  font-size: 12px;
}

.calls-table th {
  color: #344052;
  white-space: nowrap;
  background: #fcfdfe;
  border-bottom: 1px solid #e7ecf2;
  padding: 17px 14px;
  font-weight: 700;
}

.calls-table td {
  vertical-align: middle;
  color: #4e6279;
  border-bottom: 1px solid #edf1f5;
  min-width: 110px;
  max-width: 230px;
  padding: 16px 14px;
}

.calls-table tbody tr:hover {
  background: #f8faff;
}

.call-reference {
  color: #235b98;
  text-align: left;
  font: inherit;
  overflow-wrap: anywhere;
  background: none;
  border: 0;
  min-width: 130px;
  padding: 0;
  font-weight: 600;
}

.call-reference:hover {
  text-decoration: underline;
}

.phone-cell, .time-cell, .duration-cell {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.calls-table .call-state {
  border-radius: 4px;
  padding: 5px 8px;
  font-size: 11px;
  display: inline-block;
}

.call-state.attempting, .call-state.received {
  color: #8b6621;
  background: #fff4db;
}

.call-state.connected {
  color: #237a52;
}

.call-state.failed {
  color: #a34444;
  background: #fce8e8;
}

.calls-table .calls-empty {
  text-align: center;
  color: #8390a1;
  padding: 44px 20px;
}

.calls-empty strong, .calls-empty span {
  display: block;
}

.calls-empty strong {
  color: #596b7f;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 500;
}

.calls-table-foot {
  color: #7b8b9e;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 18px;
  font-size: 11px;
  display: flex;
}

.call-detail {
  min-width: 0;
}

.call-detail .calls-table-heading {
  padding: 0 0 16px;
}

.call-detail h2 {
  overflow-wrap: anywhere;
}

.close-call-detail {
  color: #536a83;
  white-space: nowrap;
  background: #fff;
  border: 1px solid #d0dbe8;
  border-radius: 5px;
  padding: 8px 12px;
}

@media (min-width: 1500px) {
  .calls-table {
    font-size: 13px;
  }

  .calls-table td, .calls-table th {
    padding: 19px 16px;
  }

  .call-reference {
    min-width: 160px;
  }
}

@media (max-width: 800px) {
  .main-area > header {
    padding: 0 18px;
  }

  .calls-context {
    font-size: 11px;
  }

  .calls-toolbar label:first-child {
    max-width: none;
  }

  .calls-table-heading {
    padding: 17px 14px;
  }

  .calls-table-heading h2 {
    font-size: 18px;
  }

  .calls-table-foot {
    flex-direction: column;
  }

  .call-detail {
    padding: 18px;
  }

  .calls-toolbar .live-status {
    margin-left: 0;
  }

  .account-button {
    max-width: 190px;
  }

  .calls-table-scroll {
    overscroll-behavior-x: contain;
  }
}

.call-control-notice {
  color: #176348;
  background: #e8f7f1;
  border: 1px solid #9ed8c1;
  border-radius: 7px;
  margin: 0 0 16px;
  padding: 12px 14px;
  font-size: 12px;
  font-weight: 650;
}

.disconnect-call {
  white-space: nowrap;
  color: #a82935;
  background: #fff1f2;
  border: 1px solid #c94b55;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 800;
  transition: all .15s;
}

.disconnect-call:hover:not(:disabled) {
  color: #fff;
  background: #b52f3b;
  box-shadow: 0 4px 12px #a8293525;
}

.disconnect-call:disabled {
  cursor: wait;
  opacity: .58;
}

.login-divider {
  color: #8290a2;
  align-items: center;
  gap: 12px;
  margin: 20px 0 14px;
  font-size: 12px;
  display: flex;
}

.login-divider:before, .login-divider:after {
  content: "";
  background: #dce3ec;
  flex: 1;
  height: 1px;
}

.create-account {
  color: #1764cc;
  background: #fff;
  border: 1px solid #1764cc;
  border-radius: 8px;
  width: 100%;
  padding: 12px 20px;
  font-weight: 700;
}

.create-account:hover {
  background: #eff6ff;
}

.create-account:disabled {
  opacity: .5;
}

.registration-page {
  color: #101a45;
  background: radial-gradient(circle at 10% 15%, #e9f0ff 0, #0000 38%), radial-gradient(circle at 90% 85%, #e0fbf7 0, #0000 36%), #f6f9ff;
  min-height: 100vh;
  padding: 34px clamp(20px, 5vw, 76px) 56px;
  position: relative;
}

.registration-close {
  color: #4865d9;
  background: none;
  border: 0;
  font-size: 30px;
  line-height: 1;
  position: absolute;
  top: 28px;
  right: 34px;
}

.registration-progress {
  align-items: center;
  gap: 14px;
  max-width: 1440px;
  margin: 0 auto 24px;
  display: flex;
}

.registration-progress > span {
  color: #fff;
  background: linear-gradient(135deg, #075ee8, #5c5ff1);
  border-radius: 50%;
  place-items: center;
  width: 34px;
  height: 34px;
  font-weight: 800;
  display: grid;
}

.registration-progress div {
  gap: 3px;
  display: grid;
}

.registration-progress strong {
  font-size: 14px;
}

.registration-progress small {
  color: #61708b;
}

.role-card {
  text-align: center;
  background: #fff;
  border: 1px solid #e2e8f3;
  border-radius: 18px;
  width: min(920px, 100%);
  margin: 32px auto;
  padding: 54px;
  box-shadow: 0 22px 70px #31568b16;
}

.registration-kicker {
  letter-spacing: 1.8px;
  color: #4564d8;
  font-size: 11px;
  font-weight: 850;
}

.role-card h1, .submitted-card h1 {
  letter-spacing: -1.2px;
  margin: 8px 0;
  font-size: 38px;
}

.role-card > p:not(.registration-kicker) {
  color: #677591;
}

.role-options {
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 36px 0;
  display: grid;
}

.role-option {
  text-align: left;
  color: #101a45;
  background: #fff;
  border: 1.5px solid #496cff;
  border-radius: 15px;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  min-height: 220px;
  padding: 28px;
  display: flex;
  position: relative;
}

.role-option.buyer {
  background: linear-gradient(145deg, #fff, #ecfffb);
  border-color: #35c6b0;
}

.role-option.publisher {
  background: linear-gradient(145deg, #fff, #f0f4ff);
}

.role-option i {
  color: #fff;
  background: linear-gradient(135deg, #3c5aff, #6379ff);
  border-radius: 50%;
  place-items: center;
  width: 62px;
  height: 62px;
  font-style: normal;
  font-weight: 900;
  display: grid;
}

.role-option.buyer i {
  background: linear-gradient(135deg, #08a69c, #17c8b4);
}

.role-option strong {
  font-size: 21px;
}

.role-option span {
  color: #61708a;
  line-height: 1.5;
}

.role-option > b {
  color: #3860ef;
  background: #fff;
  border-radius: 50%;
  place-items: center;
  width: 38px;
  height: 38px;
  font-size: 24px;
  display: grid;
  position: absolute;
  bottom: 24px;
  right: 24px;
  box-shadow: 0 5px 18px #31568b22;
}

.role-option:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px #31568b18;
}

.existing-account button {
  color: #245fe6;
  background: none;
  border: 0;
  font-weight: 700;
}

.registration-card {
  background: #fff;
  border: 1px solid #e0e7f2;
  border-radius: 16px;
  grid-template-columns: 340px minmax(0, 1fr);
  max-width: 1220px;
  margin: auto;
  display: grid;
  overflow: hidden;
  box-shadow: 0 22px 70px #31568b16;
}

.registration-aside {
  background: linear-gradient(150deg, #eaf4ff, #dcecff);
  flex-direction: column;
  justify-content: center;
  padding: 52px 38px;
  display: flex;
}

.registration-card.buyer .registration-aside {
  background: linear-gradient(150deg, #e8fbf8, #d7f5ef);
}

.registration-illustration {
  color: #3869e8;
  text-align: center;
  background: #fffa;
  border-radius: 18px;
  margin-bottom: 30px;
  padding: 38px;
  font-size: 32px;
  font-weight: 900;
}

.registration-card.buyer .registration-illustration {
  color: #00a894;
}

.registration-aside h2 {
  margin: 0 0 15px;
  font-size: 28px;
}

.registration-aside p {
  color: #536886;
  line-height: 1.55;
}

.registration-aside ul {
  color: #344d70;
  gap: 13px;
  margin: 0;
  padding: 10px 0 0;
  font-size: 13px;
  list-style: none;
  display: grid;
}

.registration-aside li {
  color: #2866d8;
}

.registration-card.buyer .registration-aside li {
  color: #009d86;
}

.registration-form {
  padding: 38px 42px;
}

.form-title {
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
  display: flex;
}

.form-title button {
  color: #315de2;
  background: #edf2ff;
  border: 0;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 18px;
}

.form-title h1 {
  margin: 0 0 5px;
  font-size: 24px;
}

.form-title p {
  color: #6c7890;
  margin: 0;
  font-size: 13px;
}

.registration-grid {
  grid-template-columns: 1fr 1fr;
  gap: 17px 20px;
  display: grid;
}

.registration-field {
  color: #26365a;
  flex-direction: column;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
}

.registration-field b {
  color: #e14c58;
}

.registration-field input, .registration-field select, .registration-field textarea {
  color: #18284a;
  width: 100%;
  font: inherit;
  background: #fff;
  border: 1px solid #ccd7e7;
  border-radius: 7px;
  padding: 11px 12px;
  font-weight: 500;
}

.registration-field input:focus, .registration-field select:focus, .registration-field textarea:focus {
  border-color: #4c6ef5;
  outline: 3px solid #dfe8ff;
}

.registration-error {
  color: #a02c36;
  background: #fff0f0;
  border-radius: 8px;
  margin-bottom: 18px;
  padding: 12px 14px;
  font-size: 13px;
}

.terms-check {
  color: #53627b;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0 10px;
  font-size: 12px;
  display: flex;
}

.terms-check input {
  margin-top: 2px;
}

.activation-note {
  color: #576983;
  background: #f4f7fb;
  border-radius: 8px;
  padding: 11px 13px;
  font-size: 12px;
}

.submit-application {
  color: #fff;
  background: linear-gradient(90deg, #3159f2, #5366ff);
  border: 0;
  border-radius: 8px;
  width: 100%;
  padding: 13px;
  font-weight: 800;
}

.registration-card.buyer .submit-application {
  background: linear-gradient(90deg, #04a98f, #17bdad);
}

.submit-application:disabled {
  opacity: .55;
}

.honeypot {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  left: -10000px !important;
}

.submitted-card {
  text-align: center;
  background: #fff;
  border: 1px solid #e0e7f2;
  border-radius: 18px;
  width: min(980px, 100%);
  margin: 60px auto;
  padding: 54px;
  box-shadow: 0 22px 70px #31568b16;
}

.success-shield {
  color: #fff;
  background: linear-gradient(135deg, #08b4aa, #1cc6bd);
  border-radius: 35% 35% 50% 50%;
  place-items: center;
  width: 90px;
  height: 90px;
  margin: 0 auto 18px;
  font-size: 24px;
  font-weight: 900;
  display: grid;
}

.pending-pill {
  color: #765600;
  background: #fff0c9;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 800;
  display: inline-block;
}

.submitted-card > p:not(.registration-kicker) {
  color: #63718b;
  line-height: 1.6;
}

.application-reference {
  color: #596a84;
  background: #f3f6fb;
  border-radius: 8px;
  gap: 10px;
  margin: 5px 0 30px;
  padding: 12px 18px;
  font-size: 13px;
  display: inline-flex;
}

.verification-steps {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 16px 0 34px;
  display: grid;
}

.verification-steps > div {
  color: #65738a;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  display: flex;
}

.verification-steps i {
  color: #607087;
  background: #edf1f6;
  border-radius: 50%;
  place-items: center;
  width: 48px;
  height: 48px;
  font-style: normal;
  font-weight: 800;
  display: grid;
}

.verification-steps .current i {
  color: #fff;
  background: #4364f5;
  box-shadow: 0 0 0 7px #e6ebff;
}

.verification-steps strong {
  color: #18264b;
}

.registration-secondary {
  color: #3859dd;
  background: #fff;
  border: 1px solid #4868ee;
  border-radius: 8px;
  padding: 11px 22px;
  font-weight: 700;
}

@media (max-width: 850px) {
  .registration-card {
    grid-template-columns: 1fr;
  }

  .registration-aside {
    padding: 28px;
  }

  .registration-illustration {
    display: none;
  }

  .registration-aside ul {
    grid-template-columns: 1fr 1fr;
  }

  .registration-form {
    padding: 28px;
  }

  .role-card {
    padding: 32px;
  }

  .role-options {
    grid-template-columns: 1fr;
  }

  .verification-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .registration-page {
    padding: 24px 14px 40px;
  }

  .registration-close {
    top: 16px;
    right: 16px;
  }

  .registration-grid, .registration-aside ul {
    grid-template-columns: 1fr;
  }

  .registration-form {
    padding: 24px 18px;
  }

  .role-card {
    padding: 28px 18px;
  }

  .role-card h1, .submitted-card h1 {
    font-size: 30px;
  }

  .submitted-card {
    padding: 34px 18px;
  }

  .verification-steps {
    grid-template-columns: 1fr;
  }

  .role-option {
    min-height: 205px;
  }
}

/*# sourceMappingURL=apps_web_app_styles_1hwhe0t.css.map*/