@font-face {
  font-family: Manrope;
  src: url("/fonts/manrope-ext.woff2") format("woff2");
  font-weight: 200 800;
  font-display: swap;
  unicode-range: U+0100-024F;
}
@font-face {
  font-family: Manrope;
  src: url("/fonts/manrope.woff2") format("woff2");
  font-weight: 200 800;
  font-display: swap;
  unicode-range:
    U+0000-00FF, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215;
}
@font-face {
  font-family: Space;
  src: url("/fonts/space-ext.woff2") format("woff2");
  font-weight: 300 700;
  font-display: swap;
  unicode-range: U+0100-024F;
}
@font-face {
  font-family: Space;
  src: url("/fonts/space.woff2") format("woff2");
  font-weight: 300 700;
  font-display: swap;
  unicode-range:
    U+0000-00FF, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215;
}
:root {
  color-scheme: dark;
  --bg: #09090b;
  --surface: #111114;
  --line: #27272d;
  --text: #fafafa;
  --muted: #a1a1aa;
  --lime: #a3e635;
  --font: Manrope, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.6;
}
button,
input {
  font: inherit;
}
button,
a,
input {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: var(--lime);
}
button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}
[hidden] {
  display: none !important;
}
.muted {
  color: var(--muted);
}
.lime {
  color: var(--lime);
}
.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 242px;
  padding: 36px 24px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 0 12px;
}
.brand img {
  width: 142px;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  object-position: left;
}
.brand > span {
  letter-spacing: 5px;
  font-size: 10px;
  color: var(--muted);
}
.workspace {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 42px 0 28px;
  padding: 16px 8px;
  border-block: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
}
.workspace span:not(.workspace-mark) {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 400;
}
.workspace-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: #243315;
  color: var(--lime);
  border-radius: 8px;
}
.nav-link {
  display: flex;
  justify-content: space-between;
  padding: 12px;
  border-radius: 8px;
  font-size: 12px;
  margin: 5px 0;
  color: var(--muted);
}
.nav-link.active {
  background: #191e13;
  color: var(--lime);
}
.nav-link span {
  font-size: 10px;
  opacity: 0.6;
}
.sidebar-bottom {
  margin-top: auto;
  padding: 20px 12px 0;
}
.small-label {
  font-size: 8px;
  letter-spacing: 1.6px;
  color: var(--lime);
}
.sidebar-bottom p {
  font-family: Space, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.5;
}
.sidebar-bottom > .muted {
  font-size: 10px;
}
.shell {
  margin-left: 242px;
}
.topbar {
  height: 80px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  font-size: 12px;
  color: var(--muted);
}
.topbar strong {
  font-weight: 500;
  color: var(--text);
}
.slash {
  margin: 0 14px;
  color: #52525b;
}
.top-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
}
.status:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #71717a;
}
.status.online:before {
  background: var(--lime);
  box-shadow: 0 0 10px #a3e63344;
}
.status.failed:before {
  background: #fb923c;
}
main {
  max-width: 1470px;
  margin: auto;
  padding: 46px 48px 24px;
}
.heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}
.eyebrow {
  font-size: 9px;
  color: var(--lime);
  letter-spacing: 2px;
  font-weight: 700;
}
h1 {
  font-family: Space, Arial, sans-serif;
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 500;
  letter-spacing: -3px;
  line-height: 1.08;
  margin: 22px 0 18px;
}
h1 span {
  color: #85858f;
}
.heading p {
  color: var(--muted);
  margin: 0;
}
.heading-action {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 170px;
}
.host-label {
  font-size: 8px;
  letter-spacing: 1.8px;
  color: var(--muted);
}
.heading-action code {
  font-size: 12px;
  margin: 8px 0 26px;
  overflow-wrap: anywhere;
}
.primary,
.secondary,
.danger {
  border: 0;
  border-radius: 30px;
  padding: 11px 20px;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.primary {
  background: var(--lime);
  color: #111309;
}
.primary:hover {
  background: #bef264;
}
.primary > span {
  font-size: 21px;
  line-height: 18px;
  font-weight: 400;
}
.secondary {
  background: #232327;
  color: var(--text);
  border: 1px solid #36363c;
}
.secondary:hover {
  background: #313137;
}
.danger {
  background: #422020;
  color: #fecaca;
  border: 1px solid #7f3333;
}
.quiet {
  color: var(--muted);
  background: none;
  border: 0;
  padding: 6px;
  font-size: 11px;
}
.quiet:hover {
  color: var(--text);
}
.overview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 23px 0;
  border-block: 1px solid var(--line);
  margin: 32px 0 38px;
}
.overview > div {
  padding: 0 24px;
  border-right: 1px solid var(--line);
}
.overview > div:first-child {
  padding-left: 0;
}
.overview > div:last-child {
  border: 0;
}
.overview span {
  color: var(--muted);
  font-size: 11px;
  display: block;
  margin-bottom: 8px;
}
.overview strong {
  font-family: Space, Arial, sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
}
.overview small {
  font-family: var(--font);
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
}
.overview .transport {
  font-size: 23px;
}
.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 20px;
}
.section-title h2 {
  font-size: 17px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.4px;
}
.section-title h2 span {
  font-size: 10px;
  padding: 3px 7px;
  background: #222227;
  border-radius: 5px;
  color: var(--muted);
  margin-left: 8px;
}
.section-title > .muted {
  font-size: 10px;
}
.stream-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 23px 24px;
  margin-bottom: 14px;
  display: grid;
  grid-template-columns: 1.2fr 1.9fr auto;
  gap: 25px;
  align-items: center;
}
.stream-id {
  display: flex;
  gap: 13px;
  align-items: center;
  min-width: 0;
}
.stream-icon {
  width: 39px;
  height: 39px;
  background: #1b2312;
  border: 1px solid #303e20;
  color: var(--lime);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 19px;
  flex-shrink: 0;
}
.stream-id h3 {
  font-size: 13px;
  margin: 0 0 4px;
  overflow-wrap: anywhere;
  font-weight: 700;
}
.stream-id .status {
  font-size: 10px;
  color: var(--muted);
}
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.metric span {
  display: block;
  font-size: 9px;
  color: var(--muted);
  margin-bottom: 5px;
}
.metric strong {
  font-size: 15px;
  font-weight: 500;
  font-family: Space, Arial, sans-serif;
}
.metric small {
  font-size: 9px;
  color: var(--muted);
  font-family: var(--font);
  margin-left: 3px;
}
.stream-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.stream-actions .secondary {
  font-size: 10px;
  padding: 9px 13px;
}
.stream-actions .quiet {
  font-size: 17px;
}
.empty {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 25px;
  border: 1px dashed #303038;
  border-radius: 14px;
  background: #101013;
}
.empty-symbol {
  font-size: 28px;
  color: var(--lime);
}
.empty h3 {
  font-family: Space, Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  margin: 10px 0;
}
.empty p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
  max-width: 400px;
}
.guide {
  margin-top: 55px;
}
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 28px;
}
.guide-grid article {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.step {
  font-size: 9px;
  color: var(--lime);
  letter-spacing: 1px;
}
.guide h3 {
  font-size: 13px;
  margin: 14px 0 8px;
}
.guide p {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}
code {
  font-family: Consolas, monospace;
}
footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  color: var(--muted);
}
footer > span:first-child {
  font-weight: 800;
  letter-spacing: 0.5px;
  color: white;
}
footer > span:first-child .muted {
  font-weight: 400;
  margin-left: 8px;
}
.login-panel {
  padding: 24px;
  border: 1px solid #3b4829;
  background: #13180e;
  border-radius: 14px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 30px;
}
.login-panel h2 {
  margin: 0;
  font-family: Space, Arial, sans-serif;
  font-weight: 500;
  font-size: 20px;
}
.login-panel p {
  font-size: 12px;
  color: var(--muted);
  max-width: 310px;
}
.login-panel small {
  font-size: 9px;
  color: var(--muted);
  display: block;
  margin-top: 10px;
}
label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 8px;
}
input {
  min-width: 0;
  width: 100%;
  background: #09090b;
  border: 1px solid #3f3f46;
  border-radius: 8px;
  padding: 12px;
  color: white;
  font-size: 12px;
}
.input-action {
  display: flex;
  gap: 10px;
}
.notice {
  padding: 12px 16px;
  border: 1px solid #496024;
  background: #1a230e;
  color: #d9f99d;
  border-radius: 8px;
  font-size: 12px;
  margin-bottom: 24px;
}
.notice.error {
  border-color: #6b3636;
  background: #261617;
  color: #fecaca;
}
dialog {
  width: min(600px, calc(100vw - 32px));
  max-height: 90dvh;
  overflow: auto;
  background: #141417;
  color: var(--text);
  border: 1px solid #3a3a41;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 24px 120px #0009;
}
dialog::backdrop {
  background: #000b;
  backdrop-filter: blur(5px);
}
.dialog-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.dialog-title h2 {
  font-family: Space, Arial, sans-serif;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.7px;
  margin: 0;
}
.dialog-title .quiet {
  font-size: 23px;
}
dialog p {
  color: var(--muted);
  font-size: 12px;
  margin: 16px 0 24px;
}
.dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 26px;
}
.form-error {
  color: #fca5a5;
}
.form-error:empty {
  display: none;
}
.connection-row {
  padding: 15px 0;
  border-top: 1px solid var(--line);
}
.connection-row .input-action {
  margin-top: 8px;
}
.connection-row input {
  font-family: Consolas, monospace;
  font-size: 11px;
}
.connection-row label {
  margin: 0;
}
.connection-row small {
  color: var(--muted);
  font-size: 10px;
}
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 24px;
  border: 1px solid #536d2c;
  background: #1b2313;
  color: #d9f99d;
  border-radius: 30px;
  z-index: 10;
  font-size: 12px;
  max-width: 90vw;
}
@media (min-width: 1600px) {
  main {
    padding-top: 65px;
  }
  .stream-card {
    padding-block: 28px;
  }
  .guide {
    margin-top: 70px;
  }
}
@media (max-width: 1200px) {
  .sidebar {
    width: 200px;
    padding-inline: 16px;
  }
  .shell {
    margin-left: 200px;
  }
  main {
    padding: 32px;
  }
  .topbar {
    padding-inline: 32px;
  }
  .stream-card {
    grid-template-columns: 1fr auto;
  }
  .metrics {
    grid-column: 1/-1;
    grid-row: 2;
    border-top: 1px solid var(--line);
    padding-top: 16px;
  }
  .heading-action {
    min-width: 140px;
  }
  .overview > div {
    padding-inline: 15px;
  }
}
@media (max-width: 800px) {
  .sidebar {
    position: static;
    width: auto;
    height: auto;
    flex-direction: row;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--line);
    border-right: 0;
    justify-content: space-between;
  }
  .brand {
    padding: 0;
    gap: 5px;
  }
  .brand img {
    width: 106px;
    max-height: 55px;
  }
  .brand > span {
    font-size: 8px;
    letter-spacing: 3px;
  }
  .workspace,
  .sidebar-bottom {
    display: none;
  }
  .sidebar nav {
    display: flex;
    gap: 8px;
  }
  .nav-link span {
    display: none;
  }
  .nav-link {
    font-size: 10px;
  }
  .shell {
    margin: 0;
  }
  .topbar {
    height: 58px;
    padding-inline: 24px;
  }
  .topbar > span {
    display: none;
  }
  .top-actions {
    width: 100%;
    justify-content: space-between;
  }
  main {
    padding: 30px 24px;
  }
  .heading {
    align-items: flex-start;
  }
  .heading-action {
    min-width: 0;
    max-width: 42%;
  }
  .heading-action code {
    font-size: 10px;
  }
  h1 {
    font-size: 42px;
  }
  .heading p {
    font-size: 12px;
    max-width: 230px;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .host-label {
    font-size: 7px;
  }
  .overview {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 26px;
  }
  .overview > div:nth-child(2) {
    border: 0;
  }
  .overview > div:nth-child(3) {
    padding-left: 0;
  }
  .overview strong {
    font-size: 28px;
  }
  .guide-grid {
    gap: 20px;
  }
  .login-panel {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .login-panel p {
    max-width: none;
  }
  .section-title > .muted {
    max-width: 150px;
    text-align: right;
  }
  .guide .section-title h2 {
    font-size: 16px;
  }
}
@media (max-width: 520px) {
  .heading {
    display: block;
  }
  .heading-action {
    margin-top: 26px;
    max-width: none;
    text-align: left;
    align-items: flex-start;
  }
  .heading-action code {
    margin: 5px 0 16px;
  }
  .heading h1 {
    font-size: 48px;
  }
  .heading p {
    max-width: none;
  }
  .heading-action .primary {
    width: 100%;
  }
  .stream-card {
    padding: 18px 16px;
    gap: 12px;
  }
  .stream-id {
    gap: 9px;
  }
  .stream-id h3 {
    font-size: 12px;
  }
  .stream-icon {
    width: 30px;
    height: 30px;
  }
  .stream-actions {
    gap: 2px;
  }
  .stream-actions .secondary {
    padding: 8px 11px;
  }
  .guide-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .guide p {
    font-size: 12px;
  }
  .guide h3 {
    font-size: 15px;
  }
  .guide .section-title > .muted {
    display: none;
  }
  footer {
    flex-direction: column;
    gap: 12px;
  }
  .section-title h2 {
    font-size: 16px;
  }
  .input-action .primary {
    padding-inline: 14px;
  }
  dialog {
    padding: 22px;
  }
  .dialog-title h2 {
    font-size: 20px;
  }
}
select {
  width: 100%;
  min-width: 0;
  background: #09090b;
  color: white;
  border: 1px solid #3f3f46;
  border-radius: 8px;
  padding: 12px;
  font: inherit;
  font-size: 12px;
}
select:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}
.owner-name {
  display: block;
  color: var(--muted);
  font-size: 9px;
  margin-top: 5px;
}
.preview-button {
  color: var(--lime);
  border-color: #3b4d27;
  background: #192010;
}
.stream-actions {
  flex-wrap: wrap;
}
.account-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.7fr 1fr auto;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 22px;
  margin-bottom: 12px;
}
.account-identity {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
}
.account-avatar {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: #243315;
  color: var(--lime);
  border-radius: 10px;
  flex-shrink: 0;
}
.account-identity h3 {
  margin: 0;
  font-size: 13px;
  overflow-wrap: anywhere;
}
.account-identity .muted {
  font-size: 10px;
  overflow-wrap: anywhere;
}
.account-role {
  font-size: 11px;
  color: var(--muted);
}
.account-usage strong {
  font-family: Space, Arial, sans-serif;
  font-size: 20px;
  display: block;
}
.account-usage small {
  font-size: 10px;
}
.account-note {
  margin-top: 25px;
  max-width: 760px;
  font-size: 12px;
}
#users-view .heading p {
  max-width: 520px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 26px 0;
}
#owner-field,
#account-password-label,
#login-form label:not(:first-child),
#password-form label {
  margin-top: 18px;
}
.checkbox-label {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 22px;
}
.checkbox-label input {
  width: 16px;
  height: 16px;
  accent-color: var(--lime);
}
#password-help {
  display: block;
  margin-top: 10px;
  font-size: 11px;
}
#preview-dialog {
  width: min(900px, calc(100vw - 32px));
}
.video-stage {
  aspect-ratio: 16/9;
  width: 100%;
  background: #000;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.video-stage video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.preview-toolbar {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}
#preview-status {
  color: var(--muted);
  font-size: 12px;
  flex: 1;
}
#preview-dialog > small {
  font-size: 10px;
}
.login-panel {
  margin-bottom: 35px;
}
.login-panel .eyebrow {
  display: block;
  margin-bottom: 14px;
}
@media (max-width: 1100px) {
  .account-row {
    grid-template-columns: 1.5fr 1fr auto;
  }
  .account-role {
    grid-row: 2;
  }
  .account-row > .status {
    grid-row: 2;
  }
  .account-row > .secondary {
    grid-column: 3;
    grid-row: 1/3;
  }
  .account-usage {
    grid-column: 2;
    grid-row: 1;
  }
}
@media (max-width: 800px) {
  .top-actions {
    gap: 10px;
    flex-wrap: wrap;
  }
  #profile {
    max-width: 45%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .topbar {
    height: auto;
    min-height: 58px;
    padding-block: 12px;
  }
  .sidebar nav {
    gap: 1px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .nav-link {
    padding: 8px;
  }
  .preview-toolbar {
    flex-wrap: wrap;
  }
  #preview-status {
    flex-basis: 100%;
  }
}
@media (max-width: 520px) {
  .stream-card {
    grid-template-columns: 1fr;
  }
  .stream-actions {
    grid-row: 2;
    justify-content: flex-start;
    gap: 8px;
  }
  .stream-actions .secondary {
    padding: 9px 16px;
  }
  .metrics {
    grid-row: 3;
  }
  .account-row {
    grid-template-columns: 1fr auto;
    padding: 16px;
    gap: 14px;
  }
  .account-row > .secondary {
    grid-column: 2;
    grid-row: 3;
  }
  .account-row > .status {
    grid-column: 1;
    grid-row: 3;
  }
  .account-usage {
    grid-column: 2;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  #account-password + .secondary {
    padding-inline: 12px;
  }
  #copy-password {
    padding: 2px;
  }
  #users-view h1 {
    font-size: 39px;
  }
  #users-view .heading > .primary {
    margin-top: 25px;
  }
  .brand > span {
    letter-spacing: 1.5px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
    animation: none !important;
  }
}

.signin-page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
.signin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 38px 5vw;
}
.signin-header > .brand {
  padding: 0;
}
.signin-header > .brand img {
  width: 120px;
}
.signin-header > span {
  font-size: 11px;
  color: var(--muted);
}
.signin-layout {
  flex: 1;
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 100px;
  padding: 40px 48px 64px;
}
.signin-intro h1 {
  font-size: clamp(40px, 4.3vw, 62px);
  letter-spacing: -2.8px;
  line-height: 1.15;
  margin-top: 25px;
}
.signin-intro > p {
  color: var(--muted);
  font-size: 14px;
}
.signin-detail {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  margin-top: 65px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  max-width: 310px;
}
.signin-detail > span {
  color: var(--lime);
  font-size: 10px;
  padding-top: 5px;
}
.signin-detail p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
}
.signin-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 38px;
  background: var(--surface);
}
.signin-card h2 {
  font-family: Space, Arial, sans-serif;
  font-weight: 500;
  font-size: 29px;
  letter-spacing: -1px;
  margin: 14px 0 6px;
}
.signin-card > p {
  color: var(--muted);
  font-size: 12px;
  margin: 0 0 28px;
}
.signin-card form > label {
  margin-top: 20px;
}
.signin-card input {
  padding: 14px;
  font-size: 13px;
}
.signin-password {
  position: relative;
}
.signin-password input {
  padding-right: 66px;
}
.signin-password button {
  position: absolute;
  right: 9px;
  top: 50%;
  transform: translateY(-50%);
}
.signin-card .primary {
  width: 100%;
  margin-top: 26px;
  justify-content: space-between;
  padding: 15px 20px;
}
.signin-card > .signin-help {
  font-size: 10px;
  line-height: 1.9;
  margin: 24px 0 0;
}
.signin-demo {
  padding-top: 20px;
  margin-top: 24px;
  border-top: 1px solid var(--line);
}
.signin-demo strong {
  font-size: 11px;
  color: var(--lime);
}
.signin-demo p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.9;
}
.signin-demo button {
  font-size: 10px;
  padding: 9px 13px;
}
.signin-footer {
  margin: 0 5vw;
  padding: 24px 0;
}
@media (max-width: 900px) {
  .signin-layout {
    gap: 40px;
    grid-template-columns: 1fr 1fr;
    padding-inline: 32px;
  }
  .signin-card {
    padding: 28px;
  }
  .signin-intro h1 {
    font-size: 43px;
  }
}
@media (max-width: 700px) {
  .signin-header {
    padding: 25px 24px;
  }
  .signin-header > span {
    display: none;
  }
  .signin-layout {
    display: block;
    max-width: 500px;
    padding: 12px 24px 36px;
  }
  .signin-intro {
    margin-bottom: 28px;
  }
  .signin-intro h1 {
    font-size: 36px;
    margin: 12px 0;
    letter-spacing: -1.6px;
  }
  .signin-intro > p,
  .signin-detail,
  .signin-intro > .eyebrow {
    display: none;
  }
  .signin-card {
    padding: 26px 24px;
  }
  .signin-card h2 {
    font-size: 26px;
  }
  .signin-footer {
    margin-inline: 24px;
    font-size: 9px;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
