body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #333;
}

header {
  background-color: #000;
  color: #fff;
  padding: 2rem;
  text-align: center;
}

main {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

form {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

input, textarea {
  width: 100%;
  padding: 0.8rem;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

input:focus, textarea:focus {
  outline: 2px solid #000;
  border-color: #000;
}

input[type="submit"] {
  background: #000;
  color: #fff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

input[type="submit"]:hover {
  background: #333;
}

.g-recaptcha {
  margin: 1.5rem 0;
  transform: scale(0.9);
  transform-origin: left top;
}

footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 1.5rem;
  margin-top: 3rem;
}


/* Style des messages de statut */
.status-message {
  max-width: 600px;
  margin: 3rem auto;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.status-message.success {
  background: #e8f5e9;
  border: 2px solid #4caf50;
  color: #2e7d32;
}

.status-message.error {
  background: #ffebee;
  border: 2px solid #ef5350;
  color: #d32f2f;
}

.status-message a {
  display: inline-block;
  margin-top: 1rem;
  color: #000;
  text-decoration: none;
  font-weight: bold;
}

.status-message a:hover {
  text-decoration: underline;
}

#countdown {
  font-weight: bold;
  color: #000;
}

.status-message p {
  margin: 0.5rem 0;
}

@media (max-width: 768px) {
  form {
    padding: 1rem;
  }
  
  .g-recaptcha {
    transform: scale(0.8);
  }
}
@media (max-width: 480px) {
  .g-recaptcha {
    transform: scale(0.85) !important;
  }
}