.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: var(--bg, #eef1f6);
}

.auth-card {
  width: 100%;
  max-width: 400px;
  background: var(--surface, #fff);
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}

.auth-card h1 {
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
  text-align: center;
}

.auth-subtitle {
  text-align: center;
  color: var(--text-muted, #64748b);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.auth-form .field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.auth-form label span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted, #64748b);
}

.auth-form input {
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
  font: inherit;
}

.auth-form input:focus {
  outline: 2px solid var(--primary, #2563eb);
  outline-offset: 1px;
}

.auth-error {
  color: #dc2626;
  font-size: 0.85rem;
  min-height: 1.2rem;
  margin-bottom: 0.75rem;
}

.auth-submit {
  width: 100%;
  padding: 0.65rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: var(--primary, #2563eb);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 0.25rem;
}

.auth-submit:hover { background: #1d4ed8; }
.auth-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.auth-footer {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted, #64748b);
}

.auth-footer a {
  color: var(--primary, #2563eb);
  font-weight: 600;
  text-decoration: none;
}

.auth-footer a:hover { text-decoration: underline; }

.auth-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0;
  color: var(--text-muted, #64748b);
  font-size: 0.8rem;
}
.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border, #e2e8f0);
}

.auth-google-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 8px;
  background: #fff;
  font-weight: 600;
  cursor: pointer;
}
.auth-google-btn:hover { background: #f8fafc; }
.auth-google-icon {
  font-weight: 700;
  color: #4285f4;
}

.google-sync-status { font-size: 0.875rem; color: var(--text-muted, #64748b); margin-bottom: 0.75rem; }
.google-sync-status.error { color: #b91c1c; }
.google-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.5rem; }
