/* ── Auth screen (logged out) ── */
.auth-screen {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  overflow-y: auto;
}

.auth-card {
  width: 100%;
  max-width: 340px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.08);
  padding: 28px 24px 24px;
  text-align: center;
}

.auth-logo { font-size: 2.4rem; margin-bottom: 6px; }

.auth-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 18px;
}

.auth-error, .auth-info {
  font-size: 0.78rem;
  border-radius: 10px;
  padding: 8px 12px;
  margin-bottom: 14px;
  line-height: 1.5;
}
.auth-error { background: #f7e8e4; color: #a5503c; }
.auth-info  { background: #eef2e4; color: #5d7040; }

.auth-form { display: flex; flex-direction: column; gap: 10px; }

.auth-form input {
  border: 1.5px solid #ddd8c4;
  border-radius: 10px;
  background: #faf8f0;
  padding: 11px 12px;
  font-size: 0.88rem;
  font-family: inherit;
  color: #1a1a1a;
  outline: none;
}
.auth-form input:focus { border-color: #999; }

.btn-primary {
  background: #1a1a1a;
  color: #f0ead6;
  border: none;
  border-radius: 10px;
  padding: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary:hover { background: #333; }

.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1.5px solid #ddd8c4;
  border-radius: 10px;
  padding: 10px;
  font-size: 0.85rem;
  color: #444;
  text-decoration: none;
  background: #faf8f0;
  -webkit-tap-highlight-color: transparent;
}
.btn-google:hover { border-color: #999; }

.auth-links {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
}
.auth-links:has(> :only-child) { justify-content: center; }

.linklike {
  background: none;
  border: none;
  color: #999;
  font-size: 0.75rem;
  cursor: pointer;
  padding: 4px 0;
  -webkit-tap-highlight-color: transparent;
}
.linklike:hover { color: #333; text-decoration: underline; }
