.auth-page {
  background: linear-gradient(180deg, #eef6fb 0%, #f8fafc 56%, #eef3f1 100%);
  overflow: hidden;
}

.auth-page * {
  caret-color: transparent;
}

.auth-page input {
  caret-color: auto;
  -webkit-user-select: text;
  user-select: text;
}

.auth-shell {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: 28px;
}

.auth-panel {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 55px rgba(15, 35, 52, 0.11);
  display: grid;
  gap: 10px;
  max-width: 460px;
  padding: 26px 30px 28px;
  width: 100%;
}

.auth-brand {
  display: grid;
  gap: 0;
  justify-items: center;
  text-align: center;
}

.auth-logo {
  border: 0;
  height: auto;
  max-width: 608px;
  object-fit: contain;
  padding: 0;
  width: 144%;
}

.auth-tagline {
  color: #0b1f44;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: -124px 0 0;
  text-align: center;
  text-transform: uppercase;
}

.auth-form {
  display: grid;
  gap: 11px;
}

.form-message {
  color: var(--danger);
  font-weight: 700;
  min-height: 22px;
}

@media (max-width: 560px) {
  .auth-shell {
    padding: 18px;
  }

  .auth-panel {
    gap: 14px;
    padding: 22px 18px 24px;
  }

  .auth-logo {
    max-width: 360px;
    width: 112%;
  }

  .auth-tagline {
    font-size: 9px;
    line-height: 1.35;
    margin-top: -70px;
    max-width: 260px;
  }
}
