:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  color: #161616;
  background: #f7f6f2;
}

.login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.login-panel {
  width: min(420px, 100%);
  display: grid;
  gap: 22px;
  padding: 28px;
  border: 1px solid #d8d3ca;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(22, 22, 22, 0.12);
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #ffffff 0 17%, transparent 18%),
    linear-gradient(135deg, #d73535, #007f78);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.7);
}

h1,
p {
  margin: 0;
}

h1 {
  font-size: 1.35rem;
  line-height: 1.1;
}

.brand-row p,
.status {
  color: #6a665f;
  font-size: 0.92rem;
}

.google-button {
  min-height: 44px;
}

.status.error {
  color: #9e1e1e;
}
