.form-contact {
  display: flex;
  flex-direction: column;
  width: 350px;
  gap: 15px;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-family: "Arial", sans-serif;
  margin: auto;
  margin-top: 50px;
  box-sizing: border-box;
}

.form-contact input,
.form-contact textarea {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  font-size: 15px;
  outline: none;
}

.form-contact button {
  background-color: #fdd843;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.form-contact button:hover {
  background-color: #e4c435;
}
.form-contact label {
  font-weight: bold;
  margin-bottom: 5px;
}

@media (max-width: 400px) {
  .form-contact {
    width: 90%;
    padding: 20px;
  }
}
