/*
 * Eptamed — Modulo di Contatto
 * Porting della card form di trova-professionista.html.
 */

.ept-cf {
  background: #F8FAFA;
  border: 1.5px solid #EBEFEF;
  border-radius: 24px;
  padding: 36px 32px;
  font-family: var(--font-body, 'Familjen Grotesk', sans-serif);
}

.ept-cf-title { font-size: 1.125rem; font-weight: 800; color: #0E2E4B; margin: 0 0 6px; }
.ept-cf-sub { font-size: .875rem; color: #A0ABAB; margin: 0 0 28px; }

.ept-cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ept-cf-group { margin-bottom: 16px; }
.ept-cf-group label { display: block; font-size: .8125rem; font-weight: 700; color: #4E5655; margin-bottom: 6px; }
.ept-cf-optional { font-weight: 400; color: #A0ABAB; }

.ept-cf-input, .ept-cf-select, .ept-cf-textarea {
  width: 100%; font-family: inherit; font-size: .9375rem; color: #1C2221;
  background: #fff; border: 1.5px solid #EBEFEF; border-radius: 12px;
  padding: 0 16px; height: 48px; outline: none; transition: border-color 150ms;
}
.ept-cf-input:focus, .ept-cf-select:focus, .ept-cf-textarea:focus { border-color: #134169; }
.ept-cf-textarea { height: auto; padding-top: 14px; padding-bottom: 14px; resize: vertical; min-height: 80px; font-family: inherit; }
.ept-cf-select {
  cursor: pointer; appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%23A0ABAB' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}

.ept-cf-hp-wrap { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* <button type="submit"> nativo: protetto con !important dallo stile
   globale "Site Settings > Pulsanti" di Elementor. */
.ept-cf-submit {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; height: 52px; border-radius: 14px !important; background: #BC5A29 !important; color: #fff !important;
  font-family: inherit; font-size: 1rem; font-weight: 700; border: none !important; cursor: pointer;
  margin-top: 4px; transition: background 150ms;
}
.ept-cf-submit:hover { background: #9E4A20 !important; }
.ept-cf-submit:disabled { cursor: default; opacity: .85; }
.ept-cf-submit.ept-cf-success { background: #2A7A4B !important; }
.ept-cf-submit.ept-cf-error { background: #B3261E !important; }

.ept-cf-feedback { font-size: .8125rem; margin-top: 10px; text-align: center; min-height: 1em; }
.ept-cf-feedback.ept-cf-feedback--error { color: #B3261E; }

.ept-cf-privacy { font-size: .75rem; color: #A0ABAB; text-align: center; margin-top: 12px; line-height: 1.5; }
.ept-cf-privacy a { color: #134169; text-decoration: underline; }

@media (max-width: 480px) {
  .ept-cf-row { grid-template-columns: 1fr; }
}
