/* Modal Form Styles */
.modal-content {
  border-radius: 8px;
  border: none;
}

.modal-header {
  border-bottom: 1px solid #e0e0e0;
  padding: 20px 30px;
}

.modal-body {
  padding: 30px;
}

.modal-footer {
  border-top: 1px solid #e0e0e0;
  padding: 20px 30px;
}

/* Form Styles */
.banner-form-wrapper form input,
.banner-form-wrapper form textarea,
.banner-form-wrapper form select {
  width: 100%;
  border: none;
  height: 52px;
  padding: 12px 15px;
  font-size: 15px;
  color: #7a7a7a;
  border-radius: 5px;
  margin-bottom: 8px;
  background-color: #f2fcfc;
}

.banner-form-wrapper form textarea {
  height: 100px;
  min-height: 100px;
  max-height: 150px;
}

.banner-form-wrapper form button[type="submit"] {
  width: 100%;
  background-color: #f7b600;
  color: #fff;
  border: none;
  padding: 15px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.banner-form-wrapper form button[type="submit"]:hover {
  background-color: #e6a500;
}

.error-message {
  color: #e74c3c;
  font-size: 14px;
  margin-top: 10px;
  display: none;
}




