@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

body {
  font-family: 'Share Tech Mono', monospace;
  margin: 0;
  padding: 0;
  background: #121c16;
  color: #e8ffe3;
  text-align: center;
  line-height: 1.6;
}

/* TITRES */
h1, h2 {
  color: #fff;
  text-shadow: 0 0 6px #00ff99;
  margin-top: 30px;
}

h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

h2 {
  font-size: 26px;
  margin-bottom: 30px;
  color: #aaffcc;
}

/* HEADER */
header {
  background: #0f1a13;
  color: #00ff99;
  padding: 20px 0;
  border-bottom: 2px solid #00ff99;
  text-shadow: 0 0 4px #00ff99;
}

/* NAVIGATION */
nav ul {
  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a {
  color: #00ff99;
  text-decoration: none;
  font-size: 18px;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

nav a:hover {
  color: #fff;
  text-shadow: 0 0 8px #00ff99;
}

/* FORMULAIRE */
form {
  background: #18241b;
  max-width: 640px;
  margin: 50px auto;
  padding: 30px;
  text-align: left;
  border: 1px solid #00ff99;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 255, 153, 0.1);
}

label, legend {
  display: block;
  margin-top: 25px;
  font-weight: bold;
  font-size: 17px;
  color: #ccffdd;
  text-shadow: 0 0 2px #00ff99;
}

/* INPUTS & SELECT */
input[type="text"],
select {
  width: 100%;
  margin-top: 10px;
  padding: 10px 12px;
  font-size: 16px;
  color: #b0ffd0;
  background: #0f1a13;
  border: 1px solid #00ff99;
  border-radius: 6px;
  box-shadow: inset 0 0 4px #00ff99;
  transition: box-shadow 0.3s ease, background 0.2s;
}

input[type="text"]:focus,
select:focus {
  background: #15271f;
  box-shadow: 0 0 12px #00ff99;
  outline: none;
}

/* RADIO / CHECKBOX */
fieldset {
  border: none;
  margin-top: 30px;
  padding: 0;
}

fieldset label {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 12px;
  background: #132217;
  border: 1px solid #00ff99;
  border-radius: 6px;
  color: #e8ffe3;
  transition: background 0.2s, box-shadow 0.2s ease-in-out;
}

fieldset label:hover {
  background: #1b3222;
  box-shadow: 0 0 8px #00ff99;
}

label input {
  margin-right: 10px;
}

/* BOUTON */
button {
  margin-top: 30px;
  padding: 16px 28px;
  font-size: 17px;
  font-weight: bold;
  background: #00ff99;
  color: #000;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 0 0 15px #00ff99;
  transition: transform 0.2s, box-shadow 0.3s ease-in-out;
}

button::after {
  content: ' >';
  font-weight: bold;
  margin-left: 6px;
}

button:hover {
  transform: scale(1.06);
  box-shadow: 0 0 25px #00ff99;
}
