/* Variáveis Globais */
:root {
  --preto-carbon: #0a0a0a;
  --preto-metal: #1a1a1a;
  --neon-verde: #00ff9d;
  --branco-tech: #f0f0f0;
}

/* Reset Básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Space Grotesk', sans-serif;
}

body {
  background: var(--preto-carbon);
  color: var(--branco-tech);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

/* Header */
header {
  width: 100%;
  background: var(--preto-metal);
  padding: 1rem 5%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 255, 157, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo img {
  width: 50px;
  height: 50px;
}

.logo span {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--neon-verde);
}

/* Main */
main {
  text-align: center;
  margin-top: 100px;
}

.login-section {
  background: var(--preto-metal);
  padding: 3rem;
  border-radius: 15px;
  max-width: 400px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.login-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--neon-verde);
}

.login-section p {
  font-size: 1.2rem;
  color: var(--branco-tech);
  margin-bottom: 2rem;
}

button {
  display: block;
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

#discord-login {
  background: #5865F2; /* Cor oficial do Discord */
  color: var(--branco-tech);
}

#discord-login:hover {
  background: #4752C4;
}

#github-login {
  background: #24292E; /* Cor oficial do GitHub */
  color: var(--branco-tech);
}

#github-login:hover {
  background: #1B1F23;
}

#github-login:disabled {
  background: #444;
  cursor: not-allowed;
}
