@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap');

body {
  font-family: 'Orbitron', Arial, sans-serif;
  background-color: #121212;
  color: #eee;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-box {
  background: #1e1e1e;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
  width: 90%;
  max-width: 400px;
}

h1 {
  font-size: 2rem;
  color: #fdd835;
  text-shadow: 1px 1px 5px #000;
  margin-bottom: 20px;
  text-align: center;
}

label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  color: #90caf9;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
}

input, select {
  width: 100%;
  padding: 10px;
  background-color: #2c2c2c;
  color: #eee;
  border: 1px solid #444;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 1em;
}

button {
  margin-top: 20px;
  padding: 12px;
  width: 100%;
  background-color: #03a9f4;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s;
}

button:hover {
  background-color: #0288d1;
}

#flx-footer {
  text-align: center;
  margin-top: 40px;
  padding: 15px 0;
  font-size: 0.9rem;
  color: #888;
  border-top: 1px solid #333;
  background-color: #1a1a1a;
}
