/* 44 STUFF – Login Page */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: #0a0a0b;
  color: #fff;
  font-family: Inter, system-ui, sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-card {
  background: #111113;
  border: 1px solid #27272a;
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}
.login-icon { width: 80px; height: 80px; border-radius: 50%; margin-bottom: 20px; border: 3px solid #27272a; }
.login-title { font-size: 28px; font-weight: 800; margin-bottom: 4px; letter-spacing: -0.5px; }
.login-title span { color: #e52521; }
.login-sub { color: #71717a; font-size: 14px; margin-bottom: 32px; line-height: 1.6; }
.login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  background: #5865F2;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: Inter, system-ui, sans-serif;
  transition: all 0.2s;
  text-decoration: none;
}
.login-btn:hover { background: #4752c4; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(88, 101, 242, 0.3); }
.login-btn i { font-size: 18px; }
.login-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
  color: #3f3f46;
  font-size: 12px;
}
.login-divider::before,
.login-divider::after { content: ''; flex: 1; height: 1px; background: #27272a; }
.login-info { display: flex; flex-direction: column; gap: 8px; }
.login-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #18181b;
  border: 1px solid #27272a;
  border-radius: 10px;
  font-size: 13px;
  color: #a1a1aa;
  text-align: left;
}
.login-info-item i { color: #e52521; font-size: 12px; width: 16px; text-align: center; flex-shrink: 0; }
.login-discord-link {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #71717a;
  font-size: 13px;
  text-decoration: none;
  transition: 0.2s;
}
.login-discord-link:hover { color: #5865F2; }
.login-footer { margin-top: 20px; font-size: 11px; color: #3f3f46; }
.login-info-protection i { color: var(--success, #43b047); }
