.contact-article {
  max-width: 700px;
  margin: 2em auto;
  background-color: #f1f1f1;
  padding: 2em 3em;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */

    font-family: 'Arial', sans-serif;
    /* font-family: 'Segoe UI', sans-serif; */  color: #333;
}

.contact-article h1 {
  font-size: 2.4rem;
  color: #005D7A;
  margin-bottom: 1.2em;
  text-align: center;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.3em;
  color: #007288;
}

.contact-form label span {
  color: #d9534f; /* rouge pour * */
  margin-left: 0.2em;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 0.7em 1em;
  border: 1.5px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  margin-bottom: 1.5em;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
  resize: vertical;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
  border-color: #008090;
  outline: none;
  box-shadow: 0 0 5px rgba(0,128,144,0.3);
}

.contact-form button {
  background-color: #008090;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.8em 2em;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.25s ease;
  display: block;
  margin: 0 auto;
  box-shadow: 0 4px 6px rgba(0,128,144,0.3);
}

.contact-form button:hover {
  background-color: #005d63;
}

.error-messages {
  background-color: #f8d7da;
  color: red;
  border: 1.5px solid #f5c6cb;
  padding: 1em 1.2em;
  border-radius: 10px;
  margin-bottom: 1.5em;
  font-weight: 600;
  list-style-type: disc;
  list-style-position: inside;
}

.success-message {
  background-color: #d4edda;
  color: #17c13e;
  border: 1.5px solid #c3e6cb;
  padding: 1em 1.2em;
  border-radius: 10px;
  margin-bottom: 1.5em;
  font-weight: 600;
  text-align: center;
}

/* Responsive */

@media (max-width: 800px) {
  .contact-article {
    padding: 1.5em 2em;
    margin: 1em;
  }

  .contact-article h1 {
    font-size: 1.8rem;
  }

  .contact-form button {
    width: 100%;
    font-size: 1rem;
    padding: 0.75em;
  }
}
