/* Fond général */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #f0f4f4;
  color: #2d3748;
  min-height: 100vh;
  margin: 0;
}

/* Conteneur */
.wrap, .box {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  max-width: 500px;
  margin: 3rem auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  text-align: center;
}

/* Titres */
h1, h2, h3 {
  color: #2d3748;
  text-align: center;
  font-weight: 700;
}

/* Texte */
p, span, label {
  color: #4a5568;
  text-align: center;
}

/* Listes */
ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

ul li {
  color: #319795;
  font-weight: 500;
  padding: 5px 0;
}

/* Champs de saisie */
input[type="email"],
input[type="text"] {
  width: 100%;
  padding: 14px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  color: #2d3748;
  margin-bottom: 1rem;
  box-sizing: border-box;
}

input[type="email"]:focus,
input[type="text"]:focus {
  outline: none;
  border-color: #319795;
}

/* Bouton */
input[type="submit"],
.button,
a.button {
  background-color: #319795 !important;
  color: #fff !important;
  border: none;
  border-radius: 10px;
  padding: 14px 35px;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}

input[type="submit"]:hover,
.button:hover,
a.button:hover {
  background-color: #2c7a7b !important;
}

/* Checkbox */
input[type="checkbox"] {
  accent-color: #319795;
}

/* Liens */
a {
  color: #319795;
}

a:hover {
  color: #2c7a7b;
}

/* Footer */
footer {
  text-align: center;
  color: #a0aec0;
  font-size: 12px;
  margin-top: 20px;
}