/* =========================================
   PomeziaWeb.it — Contatti / Lead Form
   ========================================= */

:root{
  --ct-bg:#f5f7fa;
  --ct-card:#fff;
  --ct-primary:#0b3d91;
  --ct-text:#1f2937;
  --ct-muted:#6b7280;
  --ct-line:rgba(0,0,0,.08);

  --ct-radius:18px;
  --ct-shadow:0 14px 40px rgba(0,0,0,.08);
}

body{
  background:var(--ct-bg);
  color:var(--ct-text);
}

.ct-page{
  max-width:720px;
  margin:auto;
  padding:20px 0 50px;
}

.ct-card{
  background:var(--ct-card);
  border:1px solid var(--ct-line);
  border-radius:var(--ct-radius);
  box-shadow:var(--ct-shadow);
  padding:28px 24px;
}

.ct-title{
  font-size:30px;
  margin:0 0 6px;
  font-weight:900;
}

.ct-meta{
  color:var(--ct-muted);
  margin-bottom:20px;
}

.ct-meta strong{
  color:var(--ct-text);
}

.ct-field{
  margin-bottom:14px;
}

.ct-label{
  display:block;
  font-weight:700;
  margin-bottom:6px;
}

.ct-input,
.ct-textarea{
  width:100%;
  box-sizing:border-box;
  border:1px solid var(--ct-line);
  border-radius:12px;
  padding:12px;
  font-size:15px;
  background:#fff;
}

.ct-textarea{
  min-height:130px;
  resize:vertical;
}

.ct-input:focus,
.ct-textarea:focus{
  outline:none;
  border-color:var(--ct-primary);
  box-shadow:0 0 0 3px rgba(11,61,145,.12);
}

.ct-submit{
  width:100%;
  padding:16px;
  border:none;
  border-radius:14px;
  font-weight:900;
  font-size:16px;
  cursor:pointer;

  background:linear-gradient(135deg,#0b3d91,#0a2f72);
  color:#fff;
}

.ct-submit:hover{
  transform:translateY(-2px);
}

.ct-note{
  margin-top:12px;
  font-size:13px;
  color:var(--ct-muted);
  text-align:center;
}

.ct-success{
  padding:14px;
  border-radius:12px;
  background:rgba(16,185,129,.15);
  border:1px solid rgba(16,185,129,.35);
  margin-bottom:14px;
  font-weight:700;
}
