body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Inter', sans-serif;
  background: #000;
  overflow: hidden;
}

#tsparticles {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.login-container {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(15, 15, 15, 0.95);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 0 40px #00c853;
  text-align: center;
  width: 320px;
}

.logo {
  width: 160px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px #00c853);
}

.login-form h2 {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 0.9em; /* Tamanho da fonte reduzido */
}

.login-form input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: none;
  border-radius: 8px;
  background: #111;
  color: #fff;
  outline: none;
  transition: 0.3s;
}

.login-form input:focus {
  box-shadow: 0 0 5px #00c853;
}

.login-form button {
  background: #00c853;
  border: none;
  padding: 12px;
  width: 100%;
  font-weight: bold;
  border-radius: 8px;
  color: #000;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 10px;
}

.login-form button:hover {
  background: #00a94a;
}

.forgot {
  display: block;
  margin-top: 12px;
  font-size: 0.85em;
  color: #999;
  text-decoration: none;
}

.forgot:hover {
  color: #00c853;
}

.error-message {
  margin-top: 12px;
  color: #ff5252;
  font-size: 0.9em;
}
