.login-shell {
  min-height: 100svh;
}

.login-header {
  position: relative;
  display: grid;
  height: 72px;
  place-items: center;
}

.login-header .back-button {
  top: 16px;
}

.login-brand {
  display: flex;
  align-items: center;
  color: #171917;
  gap: 8px;
  text-decoration: none;
}

.login-brand > span {
  display: grid;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  place-items: center;
}

.login-brand svg {
  width: 18px;
  height: 18px;
}

.login-content {
  display: flex;
  min-height: calc(100svh - 72px);
  align-items: center;
  flex-direction: column;
  padding: 58px 24px max(36px, env(safe-area-inset-bottom));
  text-align: center;
}

.login-content > img {
  width: 148px;
  height: 128px;
  object-fit: cover;
  object-position: right bottom;
}

.login-content h1 {
  margin: 25px 0 8px;
  font-size: 24px;
  line-height: 1.35;
}

.login-content > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.google-button {
  display: grid;
  min-height: 44px;
  margin-top: 34px;
  place-items: center;
}

.login-content > .login-legal {
  max-width: 290px;
  margin-top: 18px;
  color: #737873;
  font-size: 12px;
  line-height: 1.7;
}

.login-legal a {
  color: #276749;
  font-weight: 600;
  text-underline-offset: 3px;
}

.login-status {
  min-height: 42px;
  max-width: 300px;
  padding-top: 15px;
  line-height: 1.6;
}

.login-status.error {
  color: #b53a32;
}

.logout-button {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid #e2e7e0;
  border-radius: 8px;
  background: #fff;
  color: #4f524f;
  cursor: pointer;
  gap: 8px;
}

.logout-button svg {
  width: 18px;
  height: 18px;
}
