.ct-contact-form {
  width: 100%;
  max-width: 540px;
}

.ct-form-field {
  margin-bottom: 16px;
}

.ct-input,
.ct-textarea {
  display: block;
  width: 100%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  color: #111827;
  outline: none;
  transition: border-color 0.18s ease, background 0.18s ease;
  -webkit-appearance: none;
  appearance: none;
  resize: none;
}

.ct-input::placeholder,
.ct-textarea::placeholder {
  color: #9ca3af;
}

.ct-input:focus,
.ct-textarea:focus {
  border-color: #b91c1c;
  background: #fff;
}

.ct-contact-form.ct-contact-form textarea,
.ct-contact-form textarea.ct-textarea {
  --theme-form-field-height: 120px;
  min-height: 120px;
}

.ct-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  background: #b91c1c;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.12s ease;
  margin-top: 8px;
}

.ct-submit-btn:hover {
  background: #991b1b;
}

.ct-submit-btn:active {
  transform: scale(0.98);
}                                          