.message {
  padding: 0.4em 0.8em;
  font-weight: 500;
  font-size: 14px;
  border-radius: 4px;
  background-color: #e6e6e6;
}
.message--success {
  background-color: #dcebf2;
}
.message--error {
  background-color: #e3a6a6;
  color: #411111;
}

.spinner {
  overflow: hidden;
  --size: 30px;
  --thickness: 5px;
}
.spinner:not(.spinner--inline) {
  position: absolute;
  z-index: 1;
  inset: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spinner--inline {
  display: inline-flex;
}
.spinner svg {
  width: var(--size);
  height: var(--size);
  animation: spin 2s linear infinite;
}
.spinner circle {
  --dasharray: calc(155px - var(--thickness) * 3);
  animation: ring 2s ease-in-out infinite;
  stroke: currentColor;
  stroke-dasharray: var(--dasharray);
  stroke-width: var(--thickness);
  r: calc(25px - var(--thickness) / 2);
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes ring {
  0% {
    stroke-dashoffset: var(--dasharray);
  }
  100% {
    stroke-dashoffset: calc(var(--dasharray) * -1);
  }
}

.text-area {
  display: block;
  font: inherit;
  width: 100%;
  min-height: 8em;
  padding: 0.5em;
}
.text-area:focus-visible {
  outline: none;
  border: 1.5px solid #7fb1d3;
}

.field > label {
  display: block;
  font-size: 14px;
  font-weight: 500;
}
.field > .input {
  width: 100%;
}

.input {
  font-size: inherit;
  border-radius: 3px;
  border: 1.5px solid #ddd;
  padding: 0.25em 0.4em;
  background: #fff;
}
.input:disabled {
  opacity: 0.5;
  cursor: unset;
}
.input:focus-visible {
  outline: none;
  border: 1.5px solid #7fb1d3;
}

.icon {
  --size: 24px;
  width: var(--size);
  height: var(--size);
  cursor: pointer;
  fill: currentColor;
  vertical-align: middle;
  box-sizing: content-box;
}
.icon--small {
  --size: 14px;
}
.icon use {
  pointer-events: none;
}

.select {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.25em 0.4em;
  border: 1.5px solid #ddd;
  border-radius: 4px;
}
.select--disabled {
  color: #aaa;
}
.select--disabled select {
  display: none;
}
.select--disabled .select__placeholder {
  visibility: hidden;
}
.select select {
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 0;
}
.select:focus-visible {
  outline: none;
  border: 1.5px solid #7fb1d3;
}

.pages-button {
  border-radius: 3px;
  font-weight: 500;
  font-size: 15px;
  user-select: none;
  padding: 0.3em 0.8em;
  --color: #dedede;
  --text-color: #444;
  --active-color: #cacaca;
  color: var(--text-color);
  background-color: var(--color);
}
.pages-button:has(svg) {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5em;
}
.pages-button--primary {
  --color: #2a5a93;
  --text-color: #fff;
  --active-color: #20508a;
}
.pages-button--negative {
  --color: #cc2b2b;
  --text-color: #fff;
  --active-color: #a41b1b;
}
.pages-button--small {
  font-size: 14px;
  padding: 0.15em 0.6em;
}
.pages-button--small svg {
  height: 15px;
}
.pages-button--small:has(svg) {
  padding: 0.4em;
}
.pages-button:disabled {
  opacity: 0.5;
  cursor: unset;
}
.pages-button:not(:disabled):hover {
  background-color: var(--active-color);
}
.pages-button:focus-visible {
  outline: 1.5px solid #7fb1d3;
}

.toggle {
  display: inline-flex;
}
.toggle input {
  appearance: none;
  width: 46px;
  height: 28px;
  border-radius: 50px;
  background: #eee;
  padding: 2px;
  margin: 0;
  cursor: pointer;
  border: 1.5px solid #ddd;
}
.toggle input::before {
  content: '';
  pointer-events: none;
  display: block;
  height: 100%;
  width: 50%;
  background-color: #fff;
  border-radius: 50px;
  transition: transform 150ms ease-out, background-color 150ms linear;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.08);
}
.toggle input:checked::before {
  transform: translate(100%);
  background-color: #2a5a93;
}

.actions {
  display: flex;
  justify-content: end;
  gap: 0.5em;
}
.actions--left {
  margin-right: auto;
}

.form {
  position: relative;
  display: flex;
  flex-flow: column;
  gap: 10px;
}
.form .field--error {
  color: #d81313;
}
.form .field .error {
  color: #d81313;
  font-size: 0.8em;
}
.form label .required {
  margin-left: 0.1em;
  color: #d81313;
}
.form--disabled label {
  opacity: 0.5;
}
.form .actions {
  display: flex;
  justify-content: end;
  gap: 0.5em;
}
.form--loading::after {
  content: '';
  background-color: rgba(255, 255, 255, 0.83);
  position: absolute;
  inset: 0;
}

.modal {
  width: clamp(320px, 60vw, 800px);
  min-height: 15vh;
  background: #fff;
  border: none;
  border-radius: 4px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.25);
}
.modal:modal {
  display: flex;
  flex-flow: column;
  gap: 15px;
}
.modal::backdrop {
  background: rgba(0, 0, 0, 0.9) !important;
}
.modal__content {
  flex: auto;
  overflow-y: overlay;
}
.modal .actions {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}
.modal .buttons {
  display: flex;
  justify-content: end;
  gap: 6px;
}
html:has(dialog[open]:modal) {
  overflow: hidden;
}

.spacer {
  height: var(--size);
}
.spacer--xxs {
  --size: 4px;
}
.spacer--xs {
  --size: 8px;
}
.spacer--sm {
  --size: 16px;
}
.spacer--md {
  --size: 32px;
}
.spacer--lg {
  --size: 64px;
}
.spacer--xl {
  --size: 128px;
}
.spacer--xxl {
  --size: 256px;
}

.server-error {
  color: #fff;
  background: #9a2121;
  padding: 0.5em;
  text-align: center;
}

.login-button {
  position: absolute;
  padding: 15px;
  bottom: 0;
  right: 0;
  opacity: 0.03;
}

.container {
  margin: 0 auto;
  max-width: min(100vw - var(--container-padding), 450px);
}
.container--narrow {
  max-width: min(100vw - var(--container-padding), 600px);
}

.scroll-fade {
  transition: opacity 1s linear;
  opacity: 0;
}
.scroll-fade--disabled {
  transition: none !important;
  opacity: 1 !important;
}
.scroll-fade--entered {
  opacity: 1;
}

.logo {
  font-family: 'Mirtha Display__subset', 'Mirtha Display';
  font-size: 110px;
  text-align: center;
  color: var(--primary-color);
  animation: slide-in both 1.5s ease-out 500ms;
  view-transition-name: var(--name);
  line-height: 1;
}
::view-transition-old(home),
::view-transition-old(about) {
  animation: slide-out both 500ms ease-in;
}
::view-transition-new(home),
::view-transition-new(about) {
  animation: slide-in both 1.5s ease-out 500ms;
}

*.home__hero {
  position: relative;
}
.home__backdrop {
  animation: fade-in 1s linear;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home .form {
  font-size: 18px;
  color: #444;
}
.home .input {
  font-weight: normal;
  background: #fafaf9;
  border-radius: 100px;
  padding: 10px 20px;
  text-align: center;
  margin-bottom: 5px;
}
.home .pages-button {
  color: #000;
  border-radius: 100px;
  padding: 10px 20px;
}
.home .pages-button,
.home .pages-button:hover {
  background: var(--primary-color);
}

.about h1 {
  font-size: 80px;
  font-family: var(--font-mirtha);
  text-align: center;
  line-height: 1;
}

* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: normal;
}
button {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  box-sizing: content-box;
  padding: 0;
  color: inherit;
  font: inherit;
}
button svg {
  width: 100%;
  height: 100%;
}
input {
  color: inherit;
  font: inherit;
  background: transparent;
}
input:focus-visible {
  outline: none;
}
select {
  line-height: inherit;
}
fieldset {
  display: block;
  border: none;
  padding: 0;
  margin: 0;
}
p {
  margin: 0;
}
img {
  max-width: 100%;
  vertical-align: middle;
}
a {
  text-decoration: none;
}
a:visited {
  color: inherit;
}
:root {
  --page-bg: #161616;
  --page-color: #fafaf9;
  --primary-color: #46d7ab;
  --footer-bg: #00170c;
  --container-padding: 40px;
  --font-mirtha: 'Mirtha Display__subset', 'Mirtha Display', serif;
  --font-whyte: 'ABC Whyte__subset', 'ABC Whyte', sans-serif;
}
:root.alternate {
  --page-bg: #ceff04;
}
body {
  font-family: var(--font-whyte);
  font-size: 13px;
  line-height: 1.6;
  color: var(--page-color);
  background-color: var(--page-bg);
}
hr {
  width: 100%;
  height: 1.5px;
  border: none;
  background: #ebf0a0;
}
em {
  font-style: normal;
  font-weight: bold;
}
::view-transition-old(root),
::view-transition-new(root) {
  animation-delay: 500ms;
}
a,
a:hover,
a:visited {
  color: var(--primary-color);
}
.center {
  text-align: center;
}
.right {
  text-align: right;
}
.semibold {
  font-weight: 500;
}
.bold {
  font-weight: bold;
}
.balance {
  text-wrap: balance;
}
.spaced {
  letter-spacing: 0.15em;
}
.gap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.contained {
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
}
.xl {
  font-size: 48px;
}
.primary {
  color: var(--primary-color);
}
.mirtha {
  font-family: var(--font-mirtha);
}
.sup {
  font-size: 0.6em;
  vertical-align: 0.4em;
}
.lg {
  font-size: min(8vw, 44px);
  line-height: 1.2;
}
.error {
  color: #c64949;
  text-align: center;
}
.body-color {
  color: inherit !important;
}
:root {
  --ease-in-sine: cubic-bezier(0.12, 0, 0.39, 0);
  --ease-out-sine: cubic-bezier(0.61, 1, 0.88, 1);
  --ease-in-out-sine: cubic-bezier(0.37, 0, 0.63, 1);
  --ease-in-quad: cubic-bezier(0.11, 0, 0.5, 0);
  --ease-out-quad: cubic-bezier(0.5, 1, 0.89, 1);
  --ease-in-out-quad: cubic-bezier(0.45, 0, 0.55, 1);
  --ease-in-cubic: cubic-bezier(0.32, 0, 0.67, 0);
  --ease-out-cubic: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-in-out-cubic: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-in-quart: cubic-bezier(0.5, 0, 0.75, 0);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-in-quint: cubic-bezier(0.64, 0, 0.78, 0);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out-quint: cubic-bezier(0.83, 0, 0.17, 1);
  --ease-in-expo: cubic-bezier(0.7, 0, 0.84, 0);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-expo: cubic-bezier(0.87, 0, 0.13, 1);
  --ease-in-circ: cubic-bezier(0.55, 0, 1, 0.45);
  --ease-out-circ: cubic-bezier(0, 0.55, 0.45, 1);
  --ease-in-out-circ: cubic-bezier(0.85, 0, 0.15, 1);
  --ease-in-back: cubic-bezier(0.36, 0, 0.66, -0.56);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-in-out-back: cubic-bezier(0.68, -0.6, 0.32, 1.6);
  --ease-in: var(--ease-in-cubic);
  --ease-out: var(--ease-out-cubic);
  --ease-in-out: var(--ease-in-out-cubic);
}
input {
  width: 100%;
  appearance: none;
  border: none;
  background: #fff;
  padding: 0.5em 1em;
  border-radius: 4px;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 5000s linear;
}
@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateX(-20%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slide-out {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(30%);
  }
}
@keyframes fade-in {
  0% {
    background-color: rgba(0, 0, 0, 0.5);
  }
  100% {
    background-color: rgba(0, 0, 0, 0);
  }
}
/*# sourceMappingURL=/assets/client.b3eb4c47632c4bd9fc35.css.map*/