.eksf-form-wrap{
  width:100%;
  font-family:"Poppins",Arial,sans-serif;
}
.eksf-form-wrap *{box-sizing:border-box;}
.eksf-form-card{
  width:100%;
  padding:34px;
  border-radius:38px;
  background:rgba(255,255,255,.96);
  color:#0d2315;
  box-shadow:0 35px 100px rgba(13,35,21,.16);
  border:1px solid rgba(13,35,21,.08);
}
.eksf-form-head{margin-bottom:26px;}
.eksf-form-head span{
  display:inline-flex;
  margin-bottom:14px;
  padding:9px 13px;
  border-radius:999px;
  background:rgba(122,161,0,.1);
  color:#5f8400;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.6px;
}
.eksf-form-head h3{
  margin:0 0 8px;
  font-size:30px;
  line-height:1.15;
  font-weight:900;
  letter-spacing:-.8px;
}
.eksf-form-head p{
  margin:0;
  color:rgba(13,35,21,.62);
  font-size:14px;
  line-height:1.6;
  font-weight:500;
}
.eksf-alert{
  margin-bottom:18px;
  padding:14px 16px;
  border-radius:16px;
  font-size:14px;
  font-weight:700;
  line-height:1.5;
}
.eksf-alert-success{background:rgba(122,161,0,.12);color:#4f7000;}
.eksf-alert-error{background:rgba(190,30,45,.12);color:#9d1725;}
.eksf-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.eksf-field{display:grid;gap:8px;}
.eksf-field-full{grid-column:1 / -1;}
.eksf-field label{
  font-size:12px;
  font-weight:900;
  color:#0d2315;
  text-transform:uppercase;
  letter-spacing:.4px;
}
.eksf-field label b{color:#7aa100;}
.eksf-field input,
.eksf-field select,
.eksf-field textarea{
  width:100%;
  border:1px solid rgba(13,35,21,.12);
  background:#f8fbf1;
  border-radius:18px;
  min-height:54px;
  padding:0 16px;
  font-family:inherit;
  font-size:14px;
  font-weight:600;
  color:#0d2315;
  outline:none;
}
.eksf-field textarea{
  min-height:120px;
  resize:vertical;
  padding:16px;
}
.eksf-field input:focus,
.eksf-field select:focus,
.eksf-field textarea:focus{
  border-color:#7aa100;
  box-shadow:0 0 0 4px rgba(122,161,0,.12);
}
.eksf-form button{
  grid-column:1 / -1;
  min-height:58px;
  border:0;
  border-radius:999px;
  background:linear-gradient(135deg,#7aa100,#587900);
  color:#fff;
  font-family:inherit;
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.5px;
  cursor:pointer;
  box-shadow:0 18px 40px rgba(122,161,0,.28);
  transition:.25s ease;
}
.eksf-form button:hover{transform:translateY(-2px);}
.eksf-note{
  grid-column:1 / -1;
  margin:0;
  color:rgba(13,35,21,.58);
  font-size:12px;
  line-height:1.6;
  text-align:center;
  font-weight:600;
}
@media(max-width:768px){
  .eksf-form-card{padding:24px;border-radius:28px;}
  .eksf-form{grid-template-columns:1fr;}
  .eksf-form-head h3{font-size:26px;}
}
