@font-face {
  font-family: "Open Sans";
  src: url("../source/fonts/OpenSans-300.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: "Open Sans";
  src: url("../source/fonts/OpenSans-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Open Sans";
  src: url("../source/fonts/OpenSans-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Open Sans";
  src: url("../source/fonts/OpenSans-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Inter";
  src: url("../source/fonts/Inter-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Inter";
  src: url("../source/fonts/Inter-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Inter";
  src: url("../source/fonts/Inter-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Inter";
  src: url("../source/fonts/Inter-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
}

* {
  box-sizing: border-box;
}

:root {
  --auth-zone-max-width: 401px;
  --auth-zone-horizontal-padding: 19px;
  --signup-name-column-gap: 12.5px;
}

html,
body {
  margin: 0;
  width: 100%;
  min-width: 100%;
  height: 100%;
  min-height: 100%;
}

body {
  font-family: "Inter", sans-serif;
  background: #FCFCFC;
}

.app-root {
  display: flex;
  flex-direction: row;
  width: 100vw;
  height: 100vh;
  min-width: 100vw;
  min-height: 100vh;
  background: #FCFCFC;
}

.app-panel {
  flex: 1 1 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: transparent;
}

#illustrative-zone {
  padding: 12px;
}

#input-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.auth-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: var(--auth-zone-max-width);
  height: auto;
  margin: 18px 0;
  padding: 0 var(--auth-zone-horizontal-padding);
}

.auth-zone-signup.step-one-active {
  max-width: var(--auth-zone-max-width);
}

.auth-zone-title {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 4px;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #3a3b3c;
}

.auth-zone-2fa .auth-zone-title {
  font-size: 22px;
}

.auth-zone-subtitle {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 0;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #3a3b3c;
}

.auth-zone-2fa.is-verified .auth-zone-subtitle {
  min-height: 0;
  margin-bottom: 0;
  color: transparent;
}

.auth-zone-2fa.is-verify .auth-zone-subtitle {
  margin-bottom: 16px;
}

.two-factor-setup-panel {
  display: contents;
}

.two-factor-success-panel {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-top: 16px;
}

.two-factor-success-panel[aria-hidden="false"] {
  display: flex;
}

.two-factor-success-icon {
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 auto 5px;
  object-fit: contain;
  object-position: center;
  filter: brightness(0) saturate(100%) invert(43%) sepia(21%) saturate(1184%)
    hue-rotate(91deg) brightness(92%) contrast(92%);
}

.two-factor-success-title {
  display: block;
  width: fit-content;
  height: fit-content;
  margin: 0 auto;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  color: #298548;
  text-align: center;
}

.two-factor-success-subtitle {
  display: block;
  width: 100%;
  height: fit-content;
  margin-top: 12px;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  color: #3a3b3c;
  text-align: center;
}

.backup-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  min-width: 200px;
  height: fit-content;
  margin-top: 18px;
  padding: 14px 16px 0;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  background: #f2f2f2;
}

.backup-codes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(72px, max-content));
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  column-gap: 12px;
  row-gap: 12px;
}

.backup-code-chip {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 22px;
  padding: 0 10px;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  color: #3a3b3c;
  text-align: center;
}

.backup-code-status {
  grid-column: 1 / -1;
  display: block;
  min-width: 160px;
  padding: 2px 0;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  color: #3a3b3c;
  text-align: center;
}

.backup-code-chip:nth-child(odd)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  width: 1px;
  height: 12px;
  background: rgba(150, 150, 150, 0);
  transform: translateY(-50%);
}

.backup-copy-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4.5px;
  width: calc(100% + 32px);
  margin: 11px -16px 0;
  padding: 11px 16px 12px;
  border: 0;
  border-top: 1px solid #e6e6e6;
  background: transparent;
  color: #1e6df6;
}

.backup-copy-button:hover {
  color: #3a3b3c;
}

.backup-copy-button:disabled,
.backup-copy-button:disabled:hover {
  cursor: default;
}

.backup-copy-icon {
  display: block;
  width: 16px;
  height: 16px;
  object-fit: contain;
  object-position: center;
}

.backup-copy-icon-default {
  filter: brightness(0) saturate(100%) invert(36%) sepia(81%) saturate(3089%)
    hue-rotate(212deg) brightness(99%) contrast(94%);
}

.backup-copy-button:hover .backup-copy-icon-default {
  filter: brightness(0) saturate(100%) invert(20%) sepia(4%) saturate(177%)
    hue-rotate(169deg) brightness(92%) contrast(91%);
}

.backup-copy-icon-check {
  display: none;
  width: 18px;
  height: 18px;
}

.backup-copy-label {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  color: currentColor;
}

.backup-copy-button.is-copied .backup-copy-icon-default {
  display: none;
}

.backup-copy-button.is-copied .backup-copy-icon-check {
  display: block;
  filter: brightness(0) saturate(100%) invert(31%) sepia(35%) saturate(1034%)
    hue-rotate(88deg) brightness(94%) contrast(92%);
}

.backup-copy-button.is-copied,
.backup-copy-button.is-copied:hover {
  color: #1e6c30;
  gap: 3px;
}

.auth-zone-2fa.is-verified .two-factor-setup-panel {
  display: none;
}

.auth-zone-2fa.is-verify .is-loading-shower-2fa,
.auth-zone-2fa.is-verify .or-container-2fa,
.auth-zone-2fa.is-verify .row-key,
.auth-zone-2fa.is-verify .verification-code-row,
.auth-zone-2fa.is-verify .verification-code-subtext {
  display: none;
}

.auth-zone-2fa.is-verified .footer-setup {
  margin-top: 26px;
  justify-content: flex-end;
}

.auth-zone-2fa.is-verified .logout-button {
  display: none;
}

.verify-button.is-done .verify-button-label {
  color: #3a3b3c;
}

.credentials-incorrect {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 3.5px;
  width: 100%;
  height: fit-content;
  margin-top: 18px;
  margin-bottom: -6px;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: transparent;
  opacity: 1;
  transform: translateY(0);
}

.credentials-incorrect[hidden],
.credentials-incorrect[aria-hidden="true"] {
  display: none;
}

.credentials-incorrect.is-visible {
  animation: credentialsFadeIn 0.2s ease forwards;
}

.credentials-incorrect.is-hiding {
  animation: credentialsFadeOut 0.2s ease forwards;
}

.credentials-incorrect-icon {
  display: block;
  align-self: center;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin: 0;
  background: #de1738;
  -webkit-mask-image: url("../source/info.svg");
  mask-image: url("../source/info.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.credentials-incorrect-text {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 1.2;
  color: #de1738;
}

.reset-no-user {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  width: 100%;
  height: fit-content;
  margin-top: 5px;
  margin-bottom: 10px;
  padding: 10px 14px;
  border: 1px solid #de1738;
  border-radius: 10px;
  background: linear-gradient(
    to right,
    rgba(222, 23, 56, 0.17) 0%,
    rgba(222, 23, 56, 0.02) 58%,
    rgba(170, 170, 170, 0) 100%
  );
  opacity: 0;
  transform: translateY(-4px);
}

.reset-no-user[hidden],
.reset-no-user[aria-hidden="true"] {
  display: none;
}

.reset-no-user.is-visible {
  animation: resetNoUserFadeIn 0.2s ease forwards;
}

.reset-no-user.is-hiding {
  animation: resetNoUserFadeOut 0.2s ease forwards;
}

.reset-no-user-icon {
  display: block;
  align-self: center;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin: 0;
  background: #de1738;
  -webkit-mask-image: url("../source/info.svg");
  mask-image: url("../source/info.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.reset-no-user-text {
  display: block;
  width: 100%;
  height: fit-content;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  color: #3a3b3c;
}

@keyframes credentialsFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes credentialsFadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-8px);
  }
}

@keyframes resetNoUserFadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes resetNoUserFadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-4px);
  }
}

@keyframes passwordMismatchSlideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes passwordMismatchSlideUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-8px);
  }
}

.email-container,
.pass-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  margin-top: 11px;
}

.pass-container {
  margin-top: 19px;
}

.signup-confirm-pass-container {
  margin-top: 18px;
}

.email-container {
  gap: 10px;
}

.signup-step {
  display: contents;
}

.signup-step[hidden],
.signup-step[aria-hidden="true"] {
  display: none;
}

.signup-name-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  width: 100%;
  column-gap: var(--signup-name-column-gap);
}

.signup-name-field {
  min-width: 0;
}

.pass-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: fit-content;
  margin-bottom: 10px;
}

.pass-input-wrap {
  position: relative;
  width: 100%;
  height: auto;
}

.password-icon-anchor {
  position: absolute;
  top: 50%;
  right: 3px;
  margin-right: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  transform: translateY(-50%);
}

.password-icon-anchor.is-disabled {
  pointer-events: none;
}

.email-title,
.pass-title {
  display: block;
  width: auto;
  height: auto;
  margin-left: 4px;
  margin-bottom: 0;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: #808080;
}

.email-input,
.pass-input {
  display: block;
  width: 100%;
  height: 48px;
  padding: 5px 10px;
  border: 1px solid rgba(26, 26, 26, 0);
  border-radius: 10px;
  outline: none;
  background: rgba(128, 128, 128, 0.07);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  color: #3a3b3c;
  transition: border-color 0.16s ease, border-width 0.16s ease, padding 0.16s ease;
}

.signup-name-input {
  padding-left: 8px;
  padding-right: 8px;
  font-size: 16px;
}

.pass-input {
  padding: 5px 36px 5px 10px;
}

.password-showed-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 27px;
  height: 27px;
  object-fit: contain;
  object-position: center;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  cursor: pointer;
  filter: brightness(0) saturate(100%) invert(74%) sepia(0%) saturate(0%)
    hue-rotate(148deg) brightness(92%) contrast(89%);
}

.password-showed-icon:hover {
  filter: brightness(0) saturate(100%) invert(21%) sepia(3%) saturate(231%)
    hue-rotate(169deg) brightness(96%) contrast(88%);
}

.password-hidden-icon {
  width: 21px;
  height: 21px;
}

.password-showed-icon[hidden],
.password-showed-icon[aria-hidden="true"] {
  display: none;
}

.password-tooltip {
  position: absolute;
  right: 0;
  top: 100%;
  display: block;
  width: auto;
  height: auto;
  padding: 7px 8px;
  border-radius: 8px;
  background: #555657;
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  font-weight: 300;
  font-synthesis: none;
  line-height: 1.2;
  letter-spacing: 0.2px;
  color: #ffffff;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.password-tooltip[hidden],
.password-tooltip[aria-hidden="true"] {
  display: none;
}

.email-input::placeholder,
.pass-input::placeholder {
  color: rgba(26, 26, 26, 0.36);
}

.signup-name-input::placeholder {
  font-size: 13px;
}

.email-input:hover,
.pass-input:hover {
  border-color: rgba(128, 128, 128, 0.28);
}

.email-input.is-invalid,
.email-input.is-invalid:hover,
.email-input.is-invalid:focus {
  border: 1px solid #DE1738;
  padding: 5px 10px;
}

.email-input:focus,
.pass-input:focus {
  border: 2px solid rgba(94, 96, 206, 1);
  padding: 5px 9px;
}

.signup-name-input:focus {
  padding-left: 7px;
  padding-right: 7px;
}

.pass-input:focus {
  padding: 5px 36px 5px 9px;
}

.email-input:focus::placeholder,
.pass-input:focus::placeholder {
  color: transparent;
}

.email-invalid-text {
  display: block;
  width: auto;
  height: auto;
  max-height: 0;
  margin-top: 1.5px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 1.2;
  color: #de1738;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.18s ease, max-height 0.18s ease, margin-top 0.18s ease;
}

.email-invalid-text.is-visible {
  max-height: 40px;
  opacity: 1;
}

.forgot-password-text {
  display: block;
  width: fit-content;
  height: auto;
  margin-top: 0;
  margin-bottom: 0;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  color: #005eff;
  text-decoration: none;
}

.forgot-password-text:hover {
  color: #0002a0;
  cursor: pointer;
  text-decoration: underline;
}

.forgot-password-text.is-disabled,
.forgot-password-text.is-disabled:hover {
  color: #808080;
  cursor: default;
  pointer-events: none;
}

.forgot-password-text.is-disabled:hover {
  text-decoration: underline;
}

.signup-password-rules-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: fit-content;
  margin-top: 18px;
  gap: 8px;
}

.signup-password-rules-title {
  display: block;
  width: fit-content;
  height: fit-content;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  color: #808080;
}

.signup-password-rule-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: fit-content;
  height: fit-content;
  gap: 8px;
  margin-left: 8px;
}

.signup-password-rule-icon {
  display: block;
  flex: 0 0 auto;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(128, 128, 128, 0.35);
}

.signup-password-rule-text {
  display: block;
  width: fit-content;
  height: fit-content;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  color: rgba(128, 128, 128, 0.44);
}

.signup-password-rule-item.is-met .signup-password-rule-icon {
  background: rgba(128, 128, 128, 1);
}

.signup-password-rule-item.is-met .signup-password-rule-text {
  color: rgba(128, 128, 128, 1);
}

.signup-password-strength-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  width: 100%;
  height: fit-content;
  margin-top: 24px;
  margin-bottom: 5px;
}

.signup-password-strength-title {
  display: block;
  width: fit-content;
  height: fit-content;
  margin-bottom: 9px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  color: #808080;
}

.signup-password-strength-bars {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  min-width: 0;
  height: 3px;
}

.signup-password-strength-bar {
  display: block;
  width: 32%;
  height: 100%;
  border-radius: 999px;
  background: rgba(224, 224, 224, 0.48);
}

.signup-password-strength-label {
  display: block;
  width: fit-content;
  height: fit-content;
  margin-top: 11px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  opacity: 1;
  transform: translateY(0);
}

.signup-password-strength-label[hidden],
.signup-password-strength-label[aria-hidden="true"] {
  display: none;
}

.signup-password-strength-label.is-visible {
  animation: passwordMismatchSlideDown 0.2s ease forwards;
}

.signup-password-strength-label.is-hiding {
  animation: passwordMismatchSlideUp 0.2s ease forwards;
}

.signup-password-strength-label[data-strength-level="weak"] {
  color: #DE1738;
}

.signup-password-strength-label[data-strength-level="medium"] {
  color: #E2A412;
}

.signup-password-strength-label[data-strength-level="strong"] {
  color: #50C878;
}

.signup-password-mismatch-text {
  display: block;
  align-self: center;
  width: fit-content;
  height: fit-content;
  margin-top: 11px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  color: #DE1738;
  text-align: center;
  opacity: 1;
  transform: translateY(0);
}

.signup-password-mismatch-text[hidden],
.signup-password-mismatch-text[aria-hidden="true"] {
  display: none;
}

.signup-password-mismatch-text.is-visible {
  animation: passwordMismatchSlideDown 0.2s ease forwards;
}

.signup-password-mismatch-text.is-hiding {
  animation: passwordMismatchSlideUp 0.2s ease forwards;
}

.design-container {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  width: 100%;
  height: 100%;
  border-radius: 35px;
  background: #513edf;
  overflow: hidden;
}

.design-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.design-layer-3 {
  z-index: 3;
}

.design-item {
  position: absolute;
}

.meteor-icon {
  top: 80px;
  left: 20px;
  width: 105px;
  height: 105px;
  background: #401fc1;
  -webkit-mask-image: url("../source/meteor.svg");
  mask-image: url("../source/meteor.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.dots-nine-icon {
  right: 40px;
  bottom: 80px;
  width: 105px;
  height: 105px;
  background: #401fc1;
  -webkit-mask-image: url("../source/dots-nine.svg");
  mask-image: url("../source/dots-nine.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.up-effect {
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  width: 100%;
  height: auto;
}

.up-effect-shape {
  height: 35px;
  background: #401fc1;
}

.up-effect .shape-1 {
  width: 300px;
}

.up-effect .shape-2 {
  width: 225px;
}

.up-effect .shape-3 {
  width: 150px;
}

.up-effect .shape-4 {
  width: 75px;
}

.down-effect {
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
  height: auto;
}

.down-effect-shape {
  height: 35px;
  background: #401fc1;
}

.down-effect .shape-1 {
  width: 75px;
}

.down-effect .shape-2 {
  width: 150px;
}

.down-effect .shape-3 {
  width: 225px;
}

.down-effect .shape-4 {
  width: 300px;
}

.center-effect {
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  border: 3px solid #341a9e;
  border-radius: 500px;
  transform: translate(-50%, -50%);
}

.effect-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  border: 3px solid #341a9e;
  border-radius: 500px;
  transform: translate(-50%, -50%);
}

.social-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.social-logo-image {
  display: block;
  width: 65px;
  height: 65px;
  object-fit: contain;
}

.social-logo-image-small {
  width: 24px;
  height: 24px;
}

.social-logo-anchor {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.youtube-logo {
  margin-left: 150px;
  margin-top: 0;
  margin-bottom: 295px;
  width: 65px;
  height: 65px;
  border-radius: 50px;
}

.twitch-logo {
  margin-left: 300px;
  margin-bottom: 125px;
  width: 45px;
  height: 45px;
  border-radius: 50px;
  background: #ffffff;
  background-image: url("../source/twitch-replacement.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
}

.kick-logo {
  margin-top: 185px;
  margin-right: 200px;
  width: 45px;
  height: 45px;
  border-radius: 50px;
  background: #ffffff;
  background-image: url("../source/Image%20(KICK).png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px 30px;
}

.message-anchor {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.message-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-right: 200px;
  margin-bottom: 100px;
  width: 195px;
  height: auto;
  padding: 12px 14px;
  border-radius: 20px;
  background: #401fc1;
}

.title-message {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  height: auto;
}

.message-body-text {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 4px;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2px;
  line-height: 1.2;
  color: #ffffff;
}

.message-text {
  display: block;
  width: auto;
  height: auto;
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2px;
  line-height: 1.2;
}

.message-text-primary {
  color: #ffffff;
}

.message-text-muted {
  color: #a6a6a6;
}

.total-earned-anchor {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.total-earned-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 195px;
  height: auto;
  padding: 10px 12px;
  border-radius: 20px;
  background: #ffffff;
}

.text-total-earned {
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 2.5px;
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3px;
  line-height: 1.2;
  color: #808080;
}

.amount-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: auto;
}

.amount-value {
  display: block;
  width: auto;
  height: auto;
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: #3a3b3c;
}

.arrow-up-icon {
  display: block;
  width: 14px;
  height: 14px;
  margin-left: 4px;
  background: #26883c;
  -webkit-mask-image: url("../source/arrow-up-bold.svg");
  mask-image: url("../source/arrow-up-bold.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.amount-growth {
  display: block;
  width: auto;
  height: auto;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  color: #26883c;
}

@media (max-width: 862px) {
  #illustrative-zone {
    display: none;
  }

  #input-zone {
    flex: 1 1 100%;
    width: 100%;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .signup-name-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .email-input,
  .pass-input,
  .verification-code-input {
    height: 52px;
    font-size: 16px;
  }

  .forgot-password-text {
    font-size: 14px;
  }
}

@media (max-width: 458px) {
  .email-invalid-text {
    font-size: 14px;
  }
}

.checkout-button {
  --primary-color: #645bff;
  --secondary-color: #fff;
  --hover-color: #3a3b3c;
  --waiting-color: #5e60ce;
  --button-text-color: var(--secondary-color);
  --arrow-width: 10px;
  --arrow-stroke: 2px;
  box-sizing: border-box;
  width: 100%;
  height: 45px;
  margin-top: 19px;
  border: 0;
  border-radius: 20px;
  color: var(--button-text-color);
  padding: 0 1.8em;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.3px;
  transition: 0.2s background;
  cursor: pointer;
}

.checkout-button-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 1);
  opacity: 1;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.checkout-button.is-text-dimmed .checkout-button-label {
  color: rgba(255, 255, 255, 0.68);
  opacity: 0.68;
}

.checkout-button.is-text-dimmed .arrow-wrapper {
  opacity: 0.5;
}

.checkout-button .arrow-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.checkout-button .arrow {
  margin-top: 1px;
  width: var(--arrow-width);
  height: var(--arrow-stroke);
  background: transparent;
  position: relative;
  transition: 0.2s;
}

.checkout-button .arrow::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: -3px;
  right: 3px;
  display: inline-block;
  padding: 3px;
  border: solid var(--button-text-color);
  border-width: 0 var(--arrow-stroke) var(--arrow-stroke) 0;
  transform: rotate(-45deg);
  transition: 0.2s;
}

.checkout-button:hover:not(:disabled) {
  background-color: var(--hover-color);
}

.checkout-button:hover:not(:disabled) .arrow {
  background: var(--button-text-color);
}

.checkout-button:hover:not(:disabled) .arrow::before {
  right: 0;
}

.checkout-button:disabled,
.checkout-button:disabled:hover {
  cursor: default;
}

.checkout-button.is-hidden {
  display: none;
}

#signup-next-button,
#signup-email-next-button,
#signup-otp-next-button {
  --button-text-color: #651FFF;
  border: 2px solid #651FFF;
  background: transparent;
}

#signup-next-button .checkout-button-label,
#signup-email-next-button .checkout-button-label,
#signup-otp-next-button .checkout-button-label {
  color: #651FFF;
  font-weight: 600;
}

#signup-next-button.is-text-dimmed .checkout-button-label,
#signup-email-next-button.is-text-dimmed .checkout-button-label,
#signup-otp-next-button.is-text-dimmed .checkout-button-label {
  color: #651FFF;
  opacity: 0.68;
}

#signup-next-button.is-text-dimmed,
#signup-email-next-button.is-text-dimmed,
#signup-otp-next-button.is-text-dimmed {
  border-color: rgba(101, 31, 255, 0.68);
}

#signup-next-button.is-text-dimmed .arrow-wrapper,
#signup-email-next-button.is-text-dimmed .arrow-wrapper,
#signup-otp-next-button.is-text-dimmed .arrow-wrapper {
  opacity: 0.68;
}

#signup-next-button:hover:not(:disabled),
#signup-email-next-button:hover:not(:disabled),
#signup-otp-next-button:hover:not(:disabled) {
  background: transparent;
}

#signup-next-button:hover:not(:disabled) .arrow,
#signup-email-next-button:hover:not(:disabled) .arrow,
#signup-otp-next-button:hover:not(:disabled) .arrow {
  background: #651FFF;
}

.or-container {
  position: relative;
  width: 100%;
  height: 22px;
  margin: 8px 0;
}

.or-line {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
  transform: translateY(-50%);
}

.or-label {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: block;
  width: fit-content;
  height: fit-content;
  padding: 4px 8px;
  background: #fcfcfc;
  color: #8a8a8a;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.or-container-2fa .or-label {
  font-size: 11.5px;
}

.row-key {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: fit-content;
  margin-top: 12px;
  gap: 7px;
}

.key-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.key-container:hover {
  border-color: #909090;
}

.key-container.is-disabled {
  cursor: default;
}

.key-container.is-disabled:hover {
  border-color: #e6e6e6;
}

.key-text {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  height: fit-content;
  margin-right: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  color: #808080;
}

.key-container.is-copied .key-text {
  font-weight: 600;
  color: #3a3b3c;
}

.copy-all-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  margin-right: -10px;
  padding: 5px;
  border: none;
  border-radius: 4px;
  box-sizing: border-box;
  background: transparent;
}

.copy-all-icon {
  display: block;
  width: 100%;
  height: 100%;
  filter: brightness(0) saturate(100%) invert(74%) sepia(0%) saturate(0%)
    hue-rotate(148deg) brightness(92%) contrast(89%);
}

.copy-all-icon-hover {
  display: none;
  width: 18.5px;
  height: 18.5px;
  filter: none;
}

.copy-all-icon-check {
  display: none;
  width: 23px;
  height: 23px;
  filter: none;
}

.key-container:hover:not(.is-copied):not(.is-disabled) .copy-all-icon-default {
  display: none;
}

.key-container:hover:not(.is-copied):not(.is-disabled) .copy-all-icon-hover {
  display: block;
}

.key-container.is-copied .copy-all-icon-default,
.key-container.is-copied .copy-all-icon-hover {
  display: none;
}

.key-container.is-copied .copy-all-icon-check {
  display: block;
}

.verification-code-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: fit-content;
  margin-top: 24px;
}

.verification-code-icon {
  display: block;
  width: 18px;
  height: 18px;
  margin-right: 7px;
  object-fit: contain;
  object-position: center;
  filter: brightness(0) saturate(100%) invert(60%) sepia(0%) saturate(0%)
    hue-rotate(153deg) brightness(93%) contrast(90%);
}

.verification-code-text {
  display: block;
  width: fit-content;
  height: fit-content;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: #3a3b3c;
}

.verification-code-subtext {
  display: block;
  width: 100%;
  height: fit-content;
  margin-top: 5px;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  color: #8a8a8a;
}

.verification-code-input {
  display: block;
  width: 100%;
  height: 44px;
  margin-top: 16px;
  padding: 0 12px;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  outline: none;
  background: transparent;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: #3A3B3C;
  transition: border-color 0.16s ease;
}

.verification-code-input::placeholder {
  color: #c7c7c7;
}

.verification-code-input:hover {
  border-color: #c7c7c7;
}

.verification-code-input:focus {
  border-color: #3A3B3C;
}

.verification-code-input:focus::placeholder {
  color: #c7c7c7;
}

.verification-code-input.is-invalid,
.verification-code-input.is-invalid:hover,
.verification-code-input.is-invalid:focus {
  border-color: #DE1738;
}

.auth-zone-2fa.is-verify .verification-code-input {
  margin-top: 0;
}

.verification-code-error {
  display: block;
  width: fit-content;
  height: fit-content;
  align-self: flex-start;
  margin-top: 9px;
  text-align: left;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  color: #DE1738;
  opacity: 1;
  transform: translateY(0);
}

.verification-code-error[hidden],
.verification-code-error[aria-hidden="true"] {
  display: none;
}

.verification-code-error.is-visible {
  animation: credentialsFadeIn 0.2s ease forwards;
}

.verification-code-error.is-hiding {
  animation: credentialsFadeOut 0.2s ease forwards;
}

@media (max-width: 458px) {
  .verification-code-error {
    font-size: 14px;
  }
}

.footer-setup {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 12px;
  width: 100%;
  height: fit-content;
  margin-top: 26px;
}

.logout-button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  width: fit-content;
  height: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
}

.logout-button:disabled,
.logout-button:disabled:hover {
  cursor: default;
}

.logout-button-icon {
  display: block;
  width: 16px;
  height: 16px;
  object-fit: contain;
  object-position: center;
  filter: brightness(0) saturate(100%) invert(20%) sepia(85%) saturate(4417%)
    hue-rotate(341deg) brightness(92%) contrast(90%);
}

.logout-button:hover .logout-button-icon {
  filter: brightness(0) saturate(100%) invert(18%) sepia(87%) saturate(5061%)
    hue-rotate(340deg) brightness(103%) contrast(101%);
  opacity: 0.67;
}

.logout-button:disabled .logout-button-icon,
.logout-button:disabled:hover .logout-button-icon {
  filter: brightness(0) saturate(100%) invert(56%) sepia(0%) saturate(0%)
    hue-rotate(177deg) brightness(94%) contrast(88%);
}

.logout-button-label {
  display: block;
  width: fit-content;
  height: fit-content;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  color: #de1738;
}

.logout-button:hover .logout-button-label {
  color: rgba(222, 23, 56, 0.67);
  text-decoration: underline;
}

.logout-button:disabled .logout-button-label,
.logout-button:disabled:hover .logout-button-label {
  color: #808080;
  text-decoration: none;
}

.footer-backup-code-button {
  display: flex;
  flex: 0 1 auto;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 0;
  height: fit-content;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
}

.footer-backup-code-button[hidden],
.footer-backup-code-button[aria-hidden="true"] {
  display: none;
}

.footer-backup-code-button:disabled,
.footer-backup-code-button:disabled:hover {
  cursor: default;
}

.footer-backup-code-label {
  display: block;
  width: fit-content;
  max-width: 100%;
  height: fit-content;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  color: #1e6df6;
}

.footer-backup-code-button:hover .footer-backup-code-label {
  text-decoration: underline;
}

.footer-backup-code-button:disabled .footer-backup-code-label,
.footer-backup-code-button:disabled:hover .footer-backup-code-label {
  color: #808080;
  text-decoration: none;
}

.verify-button {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: fit-content;
  height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(128, 128, 128, 0.17);
  border-radius: 10px;
  background: transparent;
  transition: background-color 0.2s ease;
}

.verify-button:hover {
  background: rgba(0, 0, 0, 0.02);
}

.verify-button:disabled,
.verify-button:disabled:hover {
  cursor: default;
}

.verify-button-loader {
  display: none;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(82, 82, 82, 0.18);
  border-left-color: transparent;
  border-radius: 50%;
  border-top-color: #525252;
  border-right-color: #525252;
  border-bottom-color: #525252;
  animation: spin89345 1s linear infinite;
}

.verify-button-loader.is-visible {
  display: block;
}

.verify-button-label {
  display: block;
  width: fit-content;
  height: fit-content;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  color: rgba(58, 59, 60, 0.49);
}

.verify-button-label.is-ready {
  color: #3a3b3c;
}

@media (max-width: 420px) {
  .footer-setup {
    gap: 8px;
  }
}

.google-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  height: 45px;
  border: 1px solid rgba(128, 128, 128, 0.17);
  border-radius: 20px;
  background: transparent;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.google-container.is-google-loading {
  gap: 0;
}

.google-container:hover {
  background: rgba(0, 0, 0, 0.02);
}

.google-container.is-disabled,
.google-container.is-disabled:hover {
  background: transparent;
  cursor: default;
}

.google-container-image {
  display: block;
  width: 16px;
  height: 16px;
  object-fit: contain;
  object-position: center;
}

.google-container-image.is-collapsed,
.google-container-image[hidden],
.google-container-image[aria-hidden="true"] {
  display: none;
}

.google-loader {
  display: none;
  width: 15px;
  height: 15px;
  margin-right: 5px;
  border: 2px solid rgba(82, 82, 82, 0.18);
  border-left-color: transparent;
  border-radius: 50%;
  border-top-color: #525252;
  border-right-color: #525252;
  border-bottom-color: #525252;
  animation: spin89345 1s linear infinite;
}

.google-loader.is-visible {
  display: block;
}

.google-container-label {
  display: block;
  width: fit-content;
  height: fit-content;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  color: #3a3b3c;
}

.google-container-label.is-google-loading {
  margin-right: 0;
}

.signup-web-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: fit-content;
  margin-top: 17px;
}

.signup-web-text,
.signup-web-link {
  display: block;
  width: fit-content;
  height: fit-content;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.25px;
  line-height: 1.2;
}

.signup-web-text {
  margin-right: 4px;
  color: #9b9a9a;
}

.signup-web-link {
  color: #3a3b3c;
  text-decoration: none;
}

.signup-web-link:hover {
  text-decoration: underline;
}

.signup-web-link.is-disabled,
.signup-web-link.is-disabled:hover {
  color: #808080;
  cursor: default;
  pointer-events: none;
}

.signup-web-link.is-disabled:hover {
  text-decoration: underline;
}

.signup-back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: fit-content;
  gap: 5px;
  margin-top: 9px;
  padding: 9px 12px;
  border: 0;
  border-radius: 20px;
  background: transparent;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.signup-back-button:hover {
  background: rgba(0, 0, 0, 0.03);
}

.signup-back-button:disabled,
.signup-back-button:disabled:hover {
  background: transparent;
  cursor: default;
  pointer-events: none;
  }

.signup-back-button-icon {
  display: block;
  width: 18px;
  height: 18px;
  fill: #808080;
  flex: 0 0 auto;
}

.signup-back-button-label {
  display: block;
  width: fit-content;
  height: fit-content;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: #808080;
}

.signup-otp-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: fit-content;
  margin-top: 16px;
}

.signup-otp-error-text {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  width: fit-content;
  height: fit-content;
  margin-right: 12px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  color: #DE1738;
  opacity: 1;
}

.signup-otp-error-text[hidden],
.signup-otp-error-text[aria-hidden="true"] {
  display: none;
}

.signup-resend-otp-button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: fit-content;
  margin: 0 0 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  color: #1a1a1a;
  cursor: pointer;
  white-space: nowrap;
  text-wrap: nowrap;
}

.signup-resend-otp-button:disabled,
.signup-resend-otp-button.is-disabled {
  color: #808080;
  cursor: default;
  pointer-events: none;
}

.signup-web-container.is-hidden {
  display: none;
}

.is-loading-shower {
  display: none;
  width: 100%;
  height: 45px;
  margin-top: 19px;
  border-radius: 20px;
  background: #645bff;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.is-loading-shower.is-visible {
  display: flex;
}

.is-loading-shower.is-visible:hover {
  background: #3a3b3c;
}

#signup-next-loading-shower,
#signup-email-loading-shower,
#signup-otp-loading-shower {
  border: 2px solid #651FFF;
  background: transparent;
}

#signup-next-loading-shower.is-visible:hover,
#signup-email-loading-shower.is-visible:hover,
#signup-otp-loading-shower.is-visible:hover {
  background: transparent;
}

#signup-next-loading-shower .button-loader,
#signup-email-loading-shower .button-loader,
#signup-otp-loading-shower .button-loader {
  border-top-color: #651FFF;
  border-right-color: #651FFF;
  border-bottom-color: #651FFF;
}

.button-loader {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-left-color: transparent;
  border-radius: 50%;
  border-top-color: var(--button-text-color, #ffffff);
  border-right-color: var(--button-text-color, #ffffff);
  border-bottom-color: var(--button-text-color, #ffffff);
  animation: spin89345 1s linear infinite;
}

.is-loading-shower-2fa {
  width: 143px;
  height: 143px;
  margin-top: 16px;
  background: transparent;
  align-items: center;
  justify-content: center;
}

.is-loading-shower-2fa:hover,
.is-loading-shower-2fa.is-visible:hover {
  background: transparent;
}

.is-loading-shower-2fa .button-loader {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(58, 59, 60, 0.18);
  border-left-color: transparent;
  border-top-color: #3a3b3c;
  border-right-color: #3a3b3c;
  border-bottom-color: #3a3b3c;
}

.two-factor-qr {
  display: none;
  width: 143px;
  height: 143px;
  align-items: center;
  justify-content: center;
}

.two-factor-qr[aria-hidden="false"] {
  display: flex;
}

.two-factor-qr-image {
  display: block;
  width: 143px;
  height: 143px;
  object-fit: contain;
  object-position: center;
}

@keyframes spin89345 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
