body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.login-container {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  text-align: center;
  min-width: 300px;
}

h1 {
  color: #333;
  margin-bottom: 10px;
  font-size: 24px;
}

.subtitle {
  color: #666;
  margin-bottom: 30px;
  font-size: 14px;
}

.login-form {
  display: none;
  text-align: left;
}

.login-form.active {
  display: block;
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 5px;
  color: #333;
  font-weight: bold;
  font-size: 14px;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  box-sizing: border-box;
}

input[type="text"]:focus,
input[type="password"]:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 5px rgba(102, 126, 234, 0.3);
}

.btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-login {
  background: #667eea;
  color: white;
  margin-bottom: 15px;
}

.btn-login:hover {
  background: #5568d3;
}

.btn-discord {
  background: #5865F2;
  color: white;
  text-decoration: none;
  display: block;
  padding: 12px;
  border-radius: 5px;
  margin-bottom: 15px;
  transition: background 0.3s;
}

.btn-discord:hover {
  background: #4752C4;
}

.error-message {
  background: #fee;
  color: #c33;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 15px;
  font-size: 14px;
  display: none;
}

.error-message.show {
  display: block;
}

.toggle-auth {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.toggle-auth a {
  color: #667eea;
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
}

.toggle-auth a:hover {
  text-decoration: underline;
}

.dev-mode {
  background: #fffbea;
  border: 1px solid #ffe58f;
  color: #8b6914;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 15px;
  font-size: 12px;
  text-align: center;
}
