/*
Theme Name: Salient Child Theme
Description: This is a custom child theme for Salient
Theme URI:   https://themeforest.net/item/salient-responsive-multipurpose-theme/4363266
Author: ThemeNectar
Author URI:  https://themeforest.net/user/themenectar
Template: salient
Version: 1.0
*/.contact-form-wrapper {
  background-color: #111;
  padding: 5px;
  color: #fff;
}

.contact-form-wrapper .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 0px;
}

/* AJOUT ICI */
.contact-form-wrapper .form-subject {
  flex: 1;
}


.contact-form-wrapper input,
.contact-form-wrapper textarea {
  background-color: #222;
  border: none;
  padding: 15px;
  color: #fff;
  width: 100%;
  font-size: 16px;
}

.contact-form-wrapper textarea {
  height: 120px;
  resize: vertical;
}

.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder {
  color: #ccc;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
  outline: none;
  border: 1px solid #555;
}

.contact-form-wrapper input[type="submit"] {
  background-color: #333;
  color: #fff;
  padding: 15px 30px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form-wrapper input[type="submit"]:hover {
  background-color: #555;
}



