/* Church Member Portal — Custom Styles */

:root {
  --primary: #1a3a6b;
  --primary-light: #2251a8;
  --accent: #d4af37;
}

body {
  background-color: #f4f6fb;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.navbar.bg-primary { background-color: var(--primary) !important; }

.avatar-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--accent);
  color: #1a1a1a;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.avatar-circle-lg {
  width: 64px;
  height: 64px;
  font-size: 22px;
}

.card { border: none; border-radius: 12px; box-shadow: 0 1px 6px rgba(0,0,0,.07); }
.card-header { border-radius: 12px 12px 0 0 !important; }

.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 60%, #3a6fd8 100%);
  padding: 2rem 1rem;
}
.auth-card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  padding: 2.5rem 2rem;
}
.auth-logo {
  width: 64px;
  height: 64px;
  background-color: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 28px;
  color: var(--accent);
}

.stat-card {
  border-left: 4px solid var(--primary);
  background: #fff;
}
.stat-card.accent { border-color: var(--accent); }

.member-row:hover { background-color: #f0f4ff; cursor: pointer; }

.footer { background-color: #fff; border-top: 1px solid #e9ecef; margin-top: auto; }

.badge-structure {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: .35em .65em;
}

@media (max-width: 576px) {
  .auth-card { padding: 2rem 1.25rem; }
}
