/* Black background section with padding */
.black-form-section {
  background-color: #111;
  padding: 60px 20px;
  text-align: center;
}

/* Make Clio form transparent */
.black-form-section .custom-form-container {
  background-color: rgba(255, 255, 255, 0.05); /* Transparent */
  padding: 40px;
  border-radius: 10px;
  border: 1px solid #444;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  max-width: 800px;
  margin: 0 auto;
}

/* Style fields */
.black-form-section input,
.black-form-section textarea {
  background-color: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid #555;
  padding: 12px;
  font-size: 16px;
  border-radius: 4px;
  margin-bottom: 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Placeholder text */
.black-form-section input::placeholder,
.black-form-section textarea::placeholder {
  color: #ccc;
}

/* Style submit button */
.black-form-section button {
  background-color: #991b1b;
  color: white;
  border: none;
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.black-form-section button:hover {
  background-color: #7f1616;
}