/* Fond noir et texte vert phosphorescent */
body {
  background-color: black;
  color: #00FF00;
  font-family: 'Courier New', Courier, monospace;
  font-size: 16px;
  margin: 0;
  padding: 20px;
}

/* Liens soulignés comme dans les vieux menus texte */
a {
  color: #00FF00;
  text-decoration: underline;
}

/* Conteneur effet terminal */
.terminal {
  border: 2px solid #00FF00;
  padding: 20px;
  margin-top: 20px;
  background-color: rgba(0, 0, 0, 0.9);
}

/* Titre principal façon en-tête système */
h1 {
  font-family: 'Courier New', Courier, monospace;
  font-size: 24px;
  border-bottom: 1px solid #00FF00;
  padding-bottom: 5px;
}

/* Barre de navigation comme une ligne de commandes */
nav {
  margin-top: 10px;
  margin-bottom: 10px;
}

nav a {
  margin-right: 15px;
}

/* Style champ de mot de passe */
input[type="password"] {
  background-color: black;
  color: #00FF00;
  border: 1px solid #00FF00;
  font-family: 'Courier New', Courier, monospace;
  padding: 4px;
  font-size: 16px;
}

button {
  background-color: black;
  color: #00FF00;
  border: 1px solid #00FF00;
  font-family: 'Courier New', Courier, monospace;
  padding: 4px 10px;
  cursor: pointer;
}

button:hover {
  background-color: #003300;
}