
.lead-form{
  display:grid !important;
  grid-template-columns:1fr 1fr;
  gap:14px;
  background:rgba(255,250,244,.92);
  border:1px solid rgba(255,255,255,.55);
  border-radius:24px;
  padding:24px;
  box-shadow:0 22px 55px rgba(49,32,18,.14);
  backdrop-filter:blur(12px);
}
.lead-form__header,
.lead-form__wide,
.lead-form__button,
.lead-status,
.lead-form small{
  grid-column:1/-1;
}
.lead-form__header strong{
  display:block;
  font-family:"Playfair Display",serif;
  font-size:30px;
  line-height:1;
  color:#211914;
}
.lead-form__header span{
  display:block;
  margin-top:8px;
  color:#6f6258;
  line-height:1.45;
  font-size:14px;
}
.lead-form label{
  display:flex;
  flex-direction:column;
  gap:7px;
}
.lead-form label span{
  color:#4b3b2e;
  font-size:13px;
  font-weight:800;
}
.lead-form input,
.lead-form select,
.lead-form textarea{
  width:100%;
  border:1px solid rgba(125,92,58,.18);
  background:#fffaf4;
  color:#221d19;
  border-radius:12px;
  font:inherit;
  outline:none;
}
.lead-form input,
.lead-form select{
  height:54px;
  padding:0 16px;
}
.lead-form textarea{
  resize:vertical;
  min-height:94px;
  padding:15px 16px;
}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus{
  border-color:#caa06a;
  box-shadow:0 0 0 4px rgba(202,160,106,.15);
}
.lead-form__button{
  width:100%;
  margin-top:4px;
}
.lead-form__button:disabled{
  opacity:.68;
  cursor:not-allowed;
}
.lead-status{
  min-height:22px;
  margin:0;
  text-align:center;
  font-weight:800;
}
.lead-status.ok{color:#1f7a45;}
.lead-status.error{color:#a82929;}
.lead-form small{
  color:#6f6258 !important;
  line-height:1.45;
  text-align:center;
}
.lead-form__hp{
  position:absolute !important;
  left:-9999px !important;
  opacity:0 !important;
  pointer-events:none !important;
}
@media (max-width:720px){
  .lead-form{
    grid-template-columns:1fr;
    padding:20px;
  }
}
