/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 03 2025 | 09:42:09 */
/* Contenitore del form */
.wpcf7-form {
  max-width: 720px;
  margin: 1.5rem auto;
  padding: 1.25rem;
  background: transparent;     /* sfondo trasparente */
  border-radius: 0;            /* angoli rettangolari */
  box-shadow: none;            /* niente ombra */
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: white;
  line-height: 1.4;
}

/* Input e textarea */
.wpcf7-form .wpcf7-form-control {
  display: block;
  width: 100%;
  padding: 0.625rem 0.75rem;
  margin-top: 0.35rem;
  margin-bottom: 0.9rem;
  border: 1px solid #cfcfcf;
  border-radius: 0;            /* angoli rettangolari */
  background: #ffffff;
  box-sizing: border-box;
  font-size: 1rem;
}

/* Textarea */
.wpcf7-textarea {
  min-height: 8rem;
  resize: vertical;
}

/* Pulsante di invio */
.wpcf7-form .wpcf7-submit {
  display: inline-block;
  padding: 0.6rem 1.1rem;
  border: 1px solid #002147;    /* bordo con stesso colore */
  background: #e3e3e3;          /* colore richiesto */
  color: white;
  font-weight: 600;
  cursor: pointer;
  border-radius: 0;             /* angoli rettangolari */
  transition: background 120ms ease, transform 120ms ease;
}

/* Hover/focus sul pulsante */
.wpcf7-form .wpcf7-submit:hover,
.wpcf7-form .wpcf7-submit:focus {
  background: #00152d;          /* leggero scurimento in hover */
  outline: none;
  transform: translateY(-1px);
	color: #fff;
}

/* Stato focus per i campi */
.wpcf7-form .wpcf7-form-control:focus {
  border-color: #002147;
  outline-offset: 2px;
}

/* Label */
.wpcf7-form label {
  font-size: 0.95rem;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 480px) {
  .wpcf7-form {
    padding: 1rem;
    margin: 1rem;
  }

  .wpcf7-form .wpcf7-submit {
    width: 100%;
  }
}
