/* Prototype jetable — feuille minimale, sans framework CSS. */

body {
  font-family: system-ui, sans-serif;
  max-width: 32rem;
  margin: 3rem auto;
  padding: 0 1rem;
  color: #222;
}

h1 {
  margin-bottom: 0.25rem;
}

.pitch {
  color: #555;
  margin-bottom: 2rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

label {
  font-weight: bold;
}

input[type="text"],
input[type="email"] {
  padding: 0.5rem;
  font-size: 1rem;
}

label.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-weight: normal;
}

button {
  margin-top: 0.5rem;
  padding: 0.6rem 1rem;
  font-size: 1rem;
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

#form-message {
  min-height: 1.2em;
}

#form-message.error {
  color: #b00020;
}

#form-message.success {
  color: #0a7a2f;
}

.disclaimer {
  color: #777;
  font-size: 0.85rem;
}
