.sf-front {
  padding: 40px 20px;
  background: var(--sf-front-bg, linear-gradient(to bottom, #ececec 0%, #ffffff 100%));
  padding-bottom: 40px;
}
.sf-front__inner {
  max-width: 1250px;
  margin: 0 auto;
}
.sf-intro {
  margin-bottom: 16px;
}
.sf-errors {
  background: #fdecec;
  border: 1px solid #f3bcbc;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 16px;
  color: #7d1b1b;
}
.sf-errors ul {
  margin: 0;
  padding-left: 18px;
}
.sf-success {
  background: #ebf7ee;
  border: 1px solid #b8e1c0;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 16px;
}
.sf-form-top {
  margin: 0 0 14px;
}
.sf-form-bottom {
  margin: 14px 0 0;
}
.sf-form {
  display: grid;
  gap: 14px;
}
.sf-form-row label {
  display: block;
  margin: 0 0 8px;
  color: #8a8f93;
  font-weight: 500;
  font-size: 20px;
  margin-left: 40px;
}
.sf-form-row label span {
  color: var(--sf-star-color, #cf3d01);
}
.sf-form-row input,
.sf-form-row textarea {
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: var(--sf-field-bg, #d2c5c2);
  color: var(--sf-field-text, #2f3f42);
  padding: 0 16px;
  font-size: 16px;
  line-height: 1.2;
  box-shadow: none !important;
  outline: none;
}
.sf-form-row input {
  height: 56px;
}
.sf-form-row textarea {
  min-height: 210px;
  padding-top: 14px;
  padding-bottom: 14px;
  resize: vertical;
}
.sf-form-actions {
  text-align: center;
  margin-top: 8px;
}
.sf-form-actions button {
  position: relative;
  min-height: 56px;
  min-width: 320px;
  padding: 0 60px 0 24px;
  border: 0;
  border-radius: 10px;
  background: var(--sf-btn-bg, #3d7d84);
  color: var(--sf-btn-color, #fff);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: none !important;
  outline: none;
  transition: background-color .2s ease-in-out;
}
.sf-form-actions button::after {
  content: "\2192";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-54%);
  font-size: 28px;
  line-height: 1;
  opacity: .22;
}
.sf-form-actions button:hover {
  filter: brightness(.92);
}
.sf-form-actions button:focus,
.sf-form-actions button:active {
  box-shadow: none !important;
  outline: none;
}
.sf-hp {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
}
