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

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

.login-container {
  text-align: center;
  padding: 40px 24px;
  max-width: 400px;
  width: 100%;
}

.logo {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  margin-bottom: 16px;
}

h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.subtitle {
  font-size: 14px;
  color: #888;
  margin-bottom: 32px;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.oauth-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 24px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s;
  min-width: 260px;
  margin: 0 auto;
}

.oauth-btn:hover { opacity: 0.85; }

.oauth-btn.google {
  background: #fff;
  color: #1f1f1f;
}

.oauth-btn.microsoft {
  background: #2f2f2f;
  color: #fff;
}

.icon {
  flex-shrink: 0;
}

.skip {
  display: block;
  color: #888;
  font-size: 13px;
  text-decoration: none;
  margin-bottom: 24px;
}

.skip:hover { color: #aaa; }

.legal {
  font-size: 11px;
  color: #555;
  margin-top: 24px;
}

.legal a {
  color: #6b9eff;
  text-decoration: none;
}

.legal a:hover { text-decoration: underline; }
