* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #111;
  color: #ccc;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.login-card {
  text-align: center;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 20px;
  padding: 56px 64px;
  width: 100%;
  max-width: 520px;
}

.login-logo {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 6px;
  margin-bottom: 4px;
}

.login-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

.login-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  color: #555;
  font-size: 14px;
}

.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #333;
}

.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  padding: 16px 24px;
  background: #fff;
  color: #333;
  font-size: 17px;
  font-weight: 500;
  font-family: inherit;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s;
}

.google-btn:hover {
  background: #f0f0f0;
}

.google-btn svg {
  flex-shrink: 0;
}

.login-terms {
  margin-top: 32px;
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}

.login-terms a {
  color: #888;
  text-decoration: underline;
}

.login-terms a:hover {
  color: #aaa;
}

.login-footer {
  margin-top: 32px;
  font-size: 13px;
  color: #444;
}
