.cf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  align-items: start;
}

/* columns */
.cf-col { display: block; }

.cf-full {
  grid-column: 1 / -1;
}

/* Labels */
.cf-form label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: #222;
  margin-bottom: 6px;
}

/* Inputs */
.cf-input,
.cf-select,
.cf-textarea,
.cf-file input[type="file"] {
  width: 100%;
}

/* Textarea specifics */
.cf-textarea { min-height: 140px; resize: vertical; padding-top: 12px; }


/* File input - basic styling wrapper (actual button uses browser style) */
.cf-file input[type="file"] {
  padding: 8px 6px;
  cursor: pointer;
}



/* Submit wrap alignment */
.cf-submit-wrap { display:flex; flex-direction:column; gap:30px; align-items: center; }


.cf-submit-wrap .wpcf7-spinner{
    display: block;
    margin: 1rem auto;
    position: absolute;
    bottom: 0.5rem;
    
}
/* Responsive: single column on small screens */
@media (max-width: 768px) {
  .cf-grid { grid-template-columns: 1fr; }
  .cf-submit-wrap { align-items: stretch; }
}