/* [project]/app/auth.css [app-client] (css) */
html, body {
  min-height: 100%;
  margin: 0;
}

.auth-page {
  box-sizing: border-box;
  background: #f5f2e9;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100dvh;
  padding: clamp(24px, 5vh, 56px) 20px;
  display: flex;
  overflow-x: hidden;
}

.auth-page__content {
  flex-direction: column;
  place-items: center;
  width: 100%;
  max-width: 100%;
  margin: auto;
  display: flex;
}

.auth-page__panel {
  box-sizing: border-box;
  background: #fffdf8;
  border: 1px solid #dfe5e0;
  border-radius: 16px;
  flex-direction: column;
  align-items: center;
  width: min(100%, 420px);
  padding: 30px 22px 18px;
  display: flex;
}

.auth-page__brand {
  color: #123c2f;
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  display: flex;
}

.auth-page__brand img {
  border: 1px solid #123c2f1f;
  border-radius: 18px;
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
}

.auth-page__brand strong {
  letter-spacing: -.025em;
  font-family: Georgia, Times New Roman, serif;
  font-size: clamp(30px, 4vw, 36px);
  font-weight: 500;
  line-height: 1;
  display: block;
}

.auth-page__brand span {
  color: #66756e;
  letter-spacing: .01em;
  margin-top: 10px;
  margin-bottom: 22px;
  font-size: 14px;
  line-height: 1.4;
  display: block;
}

.auth-page input#identifier-field, .auth-page input[name="identifier"], .auth-page input[type="email"], .auth-page input[type="tel"], .auth-page input[type="password"], .auth-page input[inputmode="numeric"], .auth-page input[autocomplete="one-time-code"] {
  border-color: #1f5b43 !important;
  box-shadow: 0 0 0 2px #9dca426b !important;
}

@media (max-width: 520px) {
  .auth-page {
    padding: 24px 14px;
  }

  .auth-page__content {
    width: 100%;
  }

  .auth-page__panel {
    padding: 26px 10px 12px;
  }
}

/*# sourceMappingURL=app_auth_1wzd0-v.css.map*/