
.bhcf-wrap{
  --bhcf-bg:#031a44;
  --bhcf-field-text:#d7dbe6;
  --bhcf-button-bg:#24c5f3;
  --bhcf-button-text:#041227;
  --bhcf-border:#29518b;
  --bhcf-checkbox:#031a44;
  --bhcf-max-width:980px;
  width:100%;
  max-width:var(--bhcf-max-width);
  margin:0 auto;
  box-sizing:border-box;
}
.bhcf-form,.bhcf-form *{box-sizing:border-box;}
.bhcf-row{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr) 210px;
  gap:16px;
  align-items:stretch;
}
.bhcf-field input{
  width:100%;
  height:70px;
  border-radius:22px;
  border:2px solid var(--bhcf-border);
  background:var(--bhcf-bg);
  color:var(--bhcf-field-text);
  padding:0 34px;
  outline:none;
  box-shadow:none;
  font-size:22px;
  line-height:1;
}
.bhcf-field input::placeholder{color:var(--bhcf-field-text);opacity:.95;}
.bhcf-submit button{
  width:100%;
  height:70px;
  border-radius:22px;
  border:2px solid var(--bhcf-border);
  background:var(--bhcf-button-bg);
  color:var(--bhcf-button-text);
  font-size:22px;
  line-height:1;
  cursor:pointer;
  transition:transform .15s ease, filter .15s ease;
}
.bhcf-submit button:hover{filter:brightness(1.03);}
.bhcf-submit button:active{transform:translateY(1px);}
.bhcf-privacy{
  margin-top:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  color:var(--bhcf-bg);
  font-size:16px;
  line-height:1.25;
  cursor:pointer;
}
.bhcf-privacy input{
  appearance:none;
  -webkit-appearance:none;
  width:22px;
  height:22px;
  border-radius:7px;
  border:2px solid var(--bhcf-checkbox);
  background:var(--bhcf-checkbox);
  display:inline-block;
  margin:0;
  position:relative;
  flex-shrink:0;
}
.bhcf-privacy input:checked::after{
  content:"";
  position:absolute;
  left:6px;
  top:2px;
  width:5px;
  height:10px;
  border:solid #fff;
  border-width:0 2px 2px 0;
  transform:rotate(45deg);
}
.bhcf-privacy a{color:inherit;text-decoration:underline;}
.bhcf-message-holder{
  margin-top:14px;
}
.bhcf-message{
  padding:12px 16px;
  border-radius:14px;
  font-size:15px;
}
.bhcf-message--success{
  background:rgba(37,211,150,.12);
  color:#178b67;
  border:1px solid rgba(37,211,150,.28);
}
.bhcf-message--error{
  background:rgba(240,118,118,.12);
  color:#b04646;
  border:1px solid rgba(240,118,118,.28);
}
@media (max-width:900px){
  .bhcf-row{grid-template-columns:1fr;}
  .bhcf-field input,.bhcf-submit button{height:64px;font-size:20px;}
  .bhcf-privacy{justify-content:flex-start;}
}
