body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  text-align: center;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 300px;
}

.captcha-box {
  margin-top: 20px;
}

#captcha-image {
  width: 200px;
  height: 100px;
  background-color: #e0e0e0;
  border: 1px solid #ccc;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  /* Ajouter un effet de distorsion */
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  /* Ou utiliser une transformation CSS pour une distorsion plus complexe */
  /* transform: skewX(10deg) skewY(5deg); */
}

input[type="text"] {
  padding: 10px;
  margin-bottom: 10px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  padding: 10px 20px;
  background-color: #3498db;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #2980b9;
}

#result-message {
  margin-top: 10px;
  font-weight: bold;
    }
