/* [project]/src/app/login/login.css [app-client] (css) */
.auth-wrap {
  --step-error: #cf5a5a;
}

html[data-theme="dark"] .auth-wrap {
  --step-error: #e07a68;
}

.auth-wrap {
  min-height: 100dvh;
  background: var(--bg);
  place-items: safe center center;
  min-height: 100svh;
  padding: 24px;
  display: grid;
}

@supports (padding: max(0px)) {
  .auth-wrap {
    padding: max(24px, env(safe-area-inset-top)) max(24px, env(safe-area-inset-right)) max(24px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
  }
}

.auth-card {
  text-align: left;
  width: 100%;
  max-width: 380px;
  padding: 8px 26px 26px;
  position: relative;
}

.auth-lang {
  top: calc(env(safe-area-inset-top, 0px)  + 8px);
  right: calc(env(safe-area-inset-right, 0px)  + 14px);
  gap: 2px;
  display: flex;
  position: absolute;
}

.auth-lang-b {
  color: var(--mut);
  padding: 4px 5px;
  font-size: 12.5px;
  font-weight: 600;
}

.auth-lang-b.on {
  color: var(--ink);
  text-underline-offset: 4px;
  text-decoration: underline;
}

.auth-brand {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  display: flex;
}

.auth-name {
  letter-spacing: -.01em;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

.auth-h {
  letter-spacing: -.012em;
  text-align: left;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
}

.auth-sub {
  color: var(--mut);
  text-align: left;
  margin: 10px 0 24px;
  font-size: 14px;
  line-height: 1.35;
}

.auth-sub.err {
  color: var(--step-error, #cf5a5a);
  font-weight: 600;
}

.auth-sub.ok {
  color: var(--green, #0fa3b1);
  font-weight: 600;
}

@media (max-height: 700px) {
  .auth-h {
    font-size: 22px;
  }
}

.auth-lbl {
  text-align: left;
  color: var(--mut);
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  display: block;
}

.auth-input {
  background: color-mix(in srgb, var(--ink) 4%, transparent);
  border-radius: var(--r-md);
  box-sizing: border-box;
  width: 100%;
  min-height: 52px;
  color: var(--ink);
  border: 1px solid rgba(0, 0, 0, 0);
  margin-bottom: 14px;
  padding: 14px;
  font-family: inherit;
  font-size: 16px;
  transition: background-color .14s, border-color .14s;
}

.auth-input::placeholder {
  color: var(--mut);
}

.auth-input:focus {
  background: var(--surf);
  border-color: color-mix(in srgb, var(--accent) 35%, transparent);
  outline: none;
}

.auth-code {
  text-align: center;
  letter-spacing: .4em;
  font-variant-numeric: tabular-nums;
  font-size: 24px;
  font-weight: 700;
}

@media (max-width: 820px) {
  .auth-input {
    font-size: 16px;
  }

  .auth-input.auth-code {
    font-size: 24px;
  }
}

.auth-btn {
  cursor: pointer;
  box-sizing: border-box;
  border-radius: var(--r-md);
  background: var(--accent);
  width: 100%;
  min-height: 52px;
  color: var(--accent-ink, #fff);
  box-shadow: var(--bub-sh);
  border: 1px solid rgba(0, 0, 0, 0);
  margin-top: 10px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  transition: all .14s;
}

@media (hover: hover) and (pointer: fine) {
  .auth-btn:hover:not(:disabled) {
    background: var(--accent-d);
    filter: none;
  }
}

.auth-btn:disabled {
  opacity: .5;
  cursor: default;
  box-shadow: none;
}

.auth-err {
  color: var(--accent-d);
  background: var(--accent-soft);
  border-radius: var(--r-sm);
  margin-top: 12px;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 600;
}

.auth-ok {
  color: var(--green, #0fa3b1);
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
}

.auth-links {
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
  display: flex;
}

.auth-link {
  color: var(--mut);
  cursor: pointer;
  background: none;
  border: none;
  padding: 2px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
}

.auth-link:hover:not(:disabled) {
  color: var(--accent-d);
}

.auth-link:disabled {
  opacity: .5;
  cursor: default;
}

.auth-link-block {
  color: var(--accent-d);
  margin-top: 10px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

@media (max-width: 640px) {
  .auth-wrap {
    min-height: 100dvh;
    place-items: start center;
    min-height: 100svh;
    padding: 0;
  }

  .auth-card {
    max-width: none;
    min-height: 100dvh;
    min-height: 100svh;
    box-shadow: none;
    padding: max(24px, env(safe-area-inset-top, 0px)) 18px calc(18px + env(safe-area-inset-bottom, 0px));
    border: none;
    border-radius: 0;
  }

  .auth-brand {
    margin-bottom: 26px;
  }

  .auth-sub {
    margin-bottom: 24px;
  }

  .auth-wrap, .auth-wrap * {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
  }

  .auth-wrap input, .auth-wrap textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    user-select: text;
  }
}

.onb-dot {
  cursor: pointer;
  border: none;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  padding: 0;
}

.auth-corner {
  left: calc(20px + env(safe-area-inset-left, 0px));
  top: calc(14px + env(safe-area-inset-top, 0px));
  z-index: 5;
  align-items: center;
  gap: 9px;
  display: flex;
  position: fixed;
}

.auth-corner .auth-name {
  font-size: 16px;
}

@media (min-width: 821px) {
  .auth-corner {
    display: none;
  }
}

@media (max-width: 820px) {
  .auth-wrap {
    padding-top: calc(72px + env(safe-area-inset-top, 0px));
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
    align-items: start;
  }

  .auth-card {
    max-width: 480px;
    padding-left: 0;
    padding-right: 0;
  }

  .auth-brand {
    display: none;
  }
}

.auth-wrap.in-app {
  padding-top: calc(72px + env(safe-area-inset-top, 0px));
  padding-left: max(20px, env(safe-area-inset-left));
  padding-right: max(20px, env(safe-area-inset-right));
  align-items: start;
}

.auth-wrap.in-app .auth-card {
  max-width: 480px;
  padding-left: 0;
  padding-right: 0;
}

.auth-ctl2 {
  top: calc(14px + env(safe-area-inset-top, 0px));
  z-index: 5;
  gap: 8px;
  display: flex;
  position: fixed;
  right: 16px;
}

.auth-tctl {
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: var(--surf);
  width: 38px;
  height: 34px;
  color: var(--ink);
  place-items: center;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  display: grid;
}

html.in-sheet .auth-corner, html.in-sheet .auth-brand, html.in-sheet .auth-ctl2, html.in-sheet .auth-lang {
  display: none;
}

html.in-sheet .auth-wrap, html.in-sheet .auth-wrap.in-app {
  align-items: start;
  padding-top: 28px;
}

html.in-sheet .auth-card {
  padding-top: 0;
}

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