/* TM CMS page */
.contact-input {
  width: 100%;
  background: rgba(15,23,42,0.6);
  border: 1px solid #334155;
  border-radius: 8px;
  padding: 12px 14px;
  color: #f1f5f9;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}
.contact-input:focus {
  outline: none;
  border-color: #22d3ee;
  box-shadow: 0 0 0 3px rgba(34,211,238,0.1);
}
.contact-input::placeholder { color: #475569; }
textarea.contact-input { resize: vertical; min-height: 120px; }