body.ownerAuthPage {
  background: radial-gradient(circle at top left, rgba(255, 106, 0, 0.14), transparent 34%),
    linear-gradient(180deg, #fffaf5 0%, #f8fafc 100%);
  color: #111827;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 100vh;
}

.ownerAuthShell {
  display: grid;
  min-height: 100vh;
  padding: 28px 16px;
  place-items: center;
}

.ownerAuthShell--setup {
  align-items: start;
  padding-top: clamp(18px, 5vh, 44px);
}

.ownerAuthCard {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 106, 0, 0.12);
  border-radius: 24px;
  box-shadow: 0 28px 90px rgba(15, 23, 42, 0.12);
  display: grid;
  gap: 18px;
  max-width: 520px;
  padding: clamp(24px, 6vw, 42px);
  width: 100%;
}

.ownerAuthBrand {
  display: inline-flex;
  height: 38px;
  width: 210px;
}

.ownerAuthBrand img,
.ownerAuthBrand svg {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.ownerAuthCard h1 {
  font-size: clamp(2.1rem, 9vw, 3.8rem);
  letter-spacing: 0;
  line-height: 0.98;
  margin: 6px 0 0;
}

.ownerAuthCard p {
  color: #5b6472;
  font-size: 1.05rem;
  line-height: 1.45;
  margin: 0;
}

.ownerAuthActions,
.ownerAuthForm {
  display: grid;
  gap: 12px;
}

.ownerAuthBtn {
  align-items: center;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  color: #111827;
  cursor: pointer;
  display: flex;
  font: inherit;
  font-size: 1.02rem;
  font-weight: 900;
  justify-content: center;
  min-height: 58px;
  padding: 0 18px;
  text-decoration: none;
}

.ownerAuthBtn--submit,
.ownerAuthBtn--telegram {
  background: linear-gradient(100deg, #ff6a00, #ff2d7a);
  border: 0;
  color: #fff;
}

.ownerAuthBtn--google {
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.ownerAuthForm label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.ownerAuthForm input {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  font: inherit;
  min-height: 54px;
  padding: 0 14px;
}

.ownerAuthForm input:focus {
  border-color: #ff6a00;
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.13);
  outline: none;
}

.ownerAuthStatus,
.ownerAuthError {
  border-radius: 14px;
  font-weight: 800;
  padding: 12px 14px;
}

.ownerAuthStatus {
  background: #fff7ed;
  color: #c2410c !important;
}

.ownerAuthError {
  background: #fef2f2;
  color: #b42318 !important;
}

.ownerAuthDevLink {
  color: #ea580c;
  font-weight: 900;
}

@media (max-width: 640px) {
  .ownerAuthShell--setup {
    min-height: auto;
    padding: 18px 20px 28px;
  }
}
