/* Login geometry, colors, and assets follow origin/analytics at 525151f2. */
@font-face {
  font-family: "ABC Favorit";
  src: url("/assets/ABCFavorit-Regular.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --page: rgb(244, 242, 232);
  --text: rgb(21, 20, 15);
  --muted: rgb(118, 115, 101);
  --placeholder: rgb(154, 151, 134);
  --border: rgb(218, 215, 201);
  --button: rgb(237, 191, 151);
  --button-hover: rgb(239, 169, 112);
  --button-active: rgb(232, 148, 85);
  --focus: 0 0 0 3px rgba(232, 120, 76, 0.32);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "ABC Favorit", sans-serif;
  color: var(--text);
  background: var(--page);
}
button,
input {
  font-family: inherit;
}
button {
  cursor: pointer;
}
[hidden] {
  display: none !important;
}
.lp-root {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  gap: 24px;
  padding: 24px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
.lp-form-col {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: appear 0.4s ease both;
}
.lp-form {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.lp-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.lp-wordmark-img {
  height: 46px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
h1 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
  overflow-wrap: anywhere;
  hyphens: auto;
}
.lp-fields {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.lp-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
label {
  font-size: 14px;
}
.lp-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.lp-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--placeholder);
  pointer-events: none;
}
input {
  width: 100%;
  height: 50px;
  border: 1.5px solid var(--border);
  border-radius: 9999px;
  padding: 0 46px 0 44px;
  font-size: 15px;
  line-height: 1.5;
  background: white;
  color: var(--text);
  outline: none;
}
input::placeholder {
  color: var(--placeholder);
  opacity: 1;
}
input:hover {
  border-color: rgb(194, 191, 174);
}
input:focus {
  border-color: var(--text);
  box-shadow: var(--focus);
}
input[aria-invalid="true"] {
  border-color: rgb(232, 120, 76);
  box-shadow: var(--focus);
}
.lp-pw-toggle {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 9999px;
  background: none;
  color: var(--muted);
}
.lp-pw-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 3px;
}
.lp-access-hint {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  margin: -4px 0 0;
}
.lp-error {
  color: rgb(158, 55, 31);
  font-size: 14px;
  margin: 0;
}
.lp-error:empty {
  display: none;
}
.lp-submit {
  height: 52px;
  width: 100%;
  border: none;
  border-radius: 9999px;
  background: var(--button);
  color: black;
  font-size: 16px;
  margin-top: 2px;
  transition:
    background 120ms ease,
    transform 100ms ease;
}
.lp-submit:hover {
  background: var(--button-hover);
}
.lp-submit:active {
  background: var(--button-active);
  transform: scale(0.985);
}
.lp-submit:disabled {
  opacity: 0.65;
  cursor: default;
}
.lp-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-top: 4px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}
.lp-footer a {
  color: var(--text);
  text-decoration: none;
}
.lp-hero {
  position: relative;
  overflow: hidden;
  flex: 1;
  min-width: 0;
  min-height: 320px;
  background: rgb(201, 191, 219);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}
.lp-hero-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-hero img {
  max-width: 78%;
  max-height: 74vh;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 18px 40px rgba(40, 28, 52, 0.22));
}
@keyframes appear {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .lp-hero {
    display: none;
  }
  .lp-root {
    padding: 16px;
  }
  input {
    font-size: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .lp-form-col {
    animation: none;
  }
  .lp-submit {
    transition: none;
  }
}
