/* Shared auth page layout (login, pending) */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f2f5;
  font-family: 'Pretendard', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
}
.card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
  padding: 48px 40px;
  width: 100%;
  max-width: 400px;
}
.logo {
  text-align: center;
  margin-bottom: 32px;
  font-size: 22px;
  font-weight: 700;
  color: #1a2340;
}
.logo span { color: #4a90d9; }
