@charset "UTF-8";
/* Basic Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: Inter, sans-serif;
}

button,
input {
  all: unset;
  box-sizing: border-box;
}

:root {
  --logotype-color: 77, 87, 93;
  --paragraph-color: 62, 70, 74;
}

h1 {
  all: unset;
  text-align: center;
  /* Augmented fourth – 1.414/M */
  font-family: "Inter";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 46px; /* 143.75% */
  letter-spacing: -0.75px;
  max-width: 600px;
}
@media screen and (max-width: 600px) {
  h1 {
    font-size: 24px;
    line-height: 32px; /* 133.333% */
    letter-spacing: 0.038px;
  }
}

p {
  all: unset;
  color: rgb(var(--paragraph-color));
  font-family: "Inter";
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.25px;
  text-align: center;
  max-width: 620px;
}
p.strong {
  --paragraph-color: 200,8.8%,13.3%;
  font-weight: 500;
}

.hidden {
  display: none;
  visibility: hidden;
}

.atea__error {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 100svh;
  overflow-x: hidden;
}
.atea__error--bg {
  position: fixed;
  width: 100svw;
  height: 100svh;
  opacity: 0.64;
  z-index: 0;
  pointer-events: none;
}
.atea__error--content {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding-top: 120px;
}
@media screen and (max-width: 600px) {
  .atea__error--content {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.atea__error--content .blurry--bg {
  position: absolute;
  fill: #FFF;
  opacity: 0.84;
  filter: blur(50px);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
}
@media screen and (max-width: 600px) {
  .atea__error--content .blurry--bg {
    opacity: 0.56;
  }
}
.atea__error--content .atea--logotype {
  height: 26px;
  fill: rgba(var(--logotype-color), 1);
  position: absolute;
  top: 40px;
}
.atea__error--illustration {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.atea__error--illustration img {
  width: 268px;
  user-select: none;
  pointer-events: none;
}
.atea__error--illustration svg {
  position: absolute;
}
.atea__error--information {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.atea__error--buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 24px 0 0 0;
}
@media screen and (max-width: 600px) {
  .atea__error--buttons {
    flex-direction: column;
  }
}
.atea__error--code {
  position: sticky;
  bottom: 40px;
  margin-top: auto;
  font-size: 14px;
  padding-top: 32px;
}
@media screen and (max-width: 600px) {
  .atea__error--code {
    padding: 40px 16px 0;
    bottom: 24px;
  }
}

.alert__inline--error {
  --alert-bg: 358, 69%, 80%;
  --alert-text: 358, 71%, 29%;
  background-color: hsla(var(--alert-bg), 0.25);
  color: hsla(var(--alert-text), 1);
  padding: 16px 24px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.alert__inline--error.hidden {
  display: none;
}
.alert__inline--error svg {
  fill: currentColor;
  width: 22px;
  height: 22px;
}
.alert__inline--error span, .alert__inline--error li {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.25px;
  color: inherit;
  display: flex;
  gap: 4px;
}

ul.alert__inline--error {
  list-style-type: disc;
  padding-left: 32px;
}
ul.alert__inline--error li {
  display: list-item;
}

.ad__button {
  --button-padding: 13px 26px;
  --button-bg-alpha: 1;
  --button-text-alpha: 1;
  --button-bg: 120,100%,27.1%;
  --button-bg-hover: 120,51.9%,41.6%;
  --button-bg-active: 120,100%,21.6%;
  --button-text: 0, 0%, 100%;
  --button-font-size: 14px;
  --button-letter-spacing: -0.25px;
  --button-text-decoration: none;
  display: flex;
  border-radius: 3px;
  height: 50px;
  padding: var(--button-padding);
  justify-content: center;
  align-items: center;
  background: hsla(var(--button-bg), var(--button-bg-alpha));
  color: hsla(var(--button-text), var(--button-text-alpha));
  font-size: var(--button-font-size);
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
  letter-spacing: -0.25px;
  text-decoration: var(--button-text-decoration);
}
.ad__button:hover {
  background: hsla(var(--button-bg-hover), var(--button-bg-alpha));
  text-decoration: var(--button-text-decoration);
  transition: all 0.1s;
  cursor: pointer;
}
.ad__button:active {
  background: hsla(var(--button-bg-active), var(--button-bg-alpha));
}
.ad__button:focus-visible {
  outline: 2px solid black;
  outline-offset: 3px;
}
.ad__button:disabled {
  opacity: 0.5;
  pointer-events: none;
}
.ad__button .isLoading {
  pointer-events: none;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  margin-right: 5px;
  border: 3.5px solid hsla(var(--button-text), 0.4);
  border-top-color: hsla(var(--button-text), 0.9);
  animation: rotateLoading 0.75s infinite linear;
}
@keyframes rotateLoading {
  to {
    transform: rotate(360deg);
  }
}
.ad__button.variant--label {
  --button-bg-alpha: 0;
  --button-text: 200,8.8%,13.3%;
}
.ad__button.variant--label:hover {
  --button-text-decoration: underline;
}
.ad__button.variant--label:active {
  color: hsla(var(--button-text), 0.6);
}
.ad__button.variant--ghost {
  --button-bg-alpha: 0;
  --button-text: 200,8.8%,13.3%;
  border: 1px solid hsl(200, 5%, 47%);
}
.ad__button.variant--ghost:hover {
  border-color: hsl(200, 9%, 27%);
  background: hsla(200, 9%, 13%, 0.08);
}
.ad__button.variant--ghost:active {
  border-color: hsl(200, 9%, 13%);
  background: hsla(200, 9%, 13%, 0.16);
}

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