.inflow-form label {
  margin-bottom: 12px;
  display: inline-block;
  width: 100%;
  font-size: 12px;
  line-height: 18px;
}
.inflow-form label.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.inflow-form label.checkbox .show-when-checked {
  opacity: 0;
}
.inflow-form label.checkbox input:checked ~ .checkbox-text .show-when-checked {
  opacity: 1;
}
.inflow-form label a{
  color: #3172B0;
  color: var(--inflow-preset-color-sky-50);
  text-decoration: underline;
}
.inflow-form .label-text {
  display: block;
  font-size: 14px;
  font-family: 'ZonaPro Semi Bold 600';
  font-weight: 600;
  margin-bottom: 4px;
}
.inflow-form [required] .label-text:after,
.inflow-form [required] .checkbox-text:before {
	content:"*";
  font-size: 14px;
  font-weight: 600;
  font-family: 'ZonaPro Semi Bold 600';
  color: #CF3A23;
  color: var(--inflow-preset-color-maple-50);
  padding-left: 2px;
}
.inflow-form [required] .checkbox-text:before  {
  padding-left: 0;
  padding-right: 2px;
}
.inflow-form input[type="text"],
.inflow-form input[type="email"],
.inflow-form input[type="phone"],
.inflow-form input[type="password"]{
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border-color: #B5B5B5;
  border-color: var(--inflow-preset-color-mineshaft-50);
  border-radius: 8px;
}
.iti {
    width: 100%;
} 
.inflow-form .error input[type="text"],
.inflow-form .error input[type="email"],
.inflow-form .error input[type="phone"],
.inflow-form .error input[type="password"] {
  border-color: #CF3A23;
  border-color: var(--inflow-preset-color-maple-50);
}
.inflow-form .validated input[type="text"],
.inflow-form .validated input[type="email"],
.inflow-form .validated input[type="phone"],
.inflow-form .validated input[type="password"] {
  border-color: #2B837E;
  border-color: var(--inflow-preset-color-pine-50);
}
.inflow-form input[type="text"]:focus,
.inflow-form input[type="email"]:focus,
.inflow-form input[type="phone"]:focus,
.inflow-form input[type="password"]:focus {
  border-color: #EB9628;
  border-color: var(--inflow-preset-color-sun-50);
  box-shadow: 0px 0px 0px 2px #FCDFAF;
  box-shadow: 0px 0px 0px 2px  var(--inflow-preset-color-sun-30);
}
body.inflow-product-manufacturing .inflow-form input[type="text"]:focus,
body.inflow-product-manufacturing .inflow-form input[type="email"]:focus,
body.inflow-product-manufacturing .inflow-form input[type="phone"]:focus,
body.inflow-product-manufacturing .inflow-form input[type="password"]:focus {
  border-color: #393385;
  border-color: var(--inflow-preset-color-grape);
 box-shadow: 0px 0px 0px 2px #D5D7F5;
 box-shadow: 0px 0px 0px 2px var(--inflow-preset-color-grape-30);
}
.inflow-form input[type="checkbox"]{
  accent-color: #F7B952;
  accent-color: var(--inflow-preset-color-sun);
}
.inflow-form input[type="submit"]{
  border: 0;
  margin-top: 8px;
}
.inflow-form ::placeholder {
  color: #7B7B7B;
  color: var(--inflow-preset-color-mineshaft-50);
  opacity: 1; /* Firefox */
}
.inflow-form .input-icon {
  position: relative;
  font-size: 16px;
  display: flex;
}
.inflow-form .input-icon:before,
.inflow-form .show-password {
  font-family: "FontAwesome"; 
  font-weight: 400; 
  position: absolute;
  padding: 12px;
  top: auto;
}
.inflow-form .input-icon.email:before {
  content: "\f0e0";
}
.inflow-form .input-icon.first-name:before {
  content: "\f007";
  border: 1px solid;
  height: 16px;
  width: 16px;
  padding: 0;
  margin: 12px 0;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: flex-start;
  top: 0px;
  bottom: 0px;
  left: 10px;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.4;
}
.inflow-form .input-icon.search:before {
  content: "\f002";
  top: -15px;
}
.inflow-form .input-icon.password:before {
  content: "\f023";
}
.inflow-form .show-password:before {
  content: "\f06e";
  position: absolute;
  cursor: pointer;
}
.inflow-form .show-password {
  right: 16px;
}
.inflow-form .password-visible .show-password:before {
  content: "\f070";
}
.inflow-form .input-icon input[type="text"],
.inflow-form .input-icon input[type="email"],
.inflow-form .input-icon input[type="phone"],
.inflow-form .input-icon input[type="password"] {
  padding-left: 36px;
}
.inflow-form .error-info {
    color: #7B7B7B;
    color: var(--inflow-preset-color-mineshaft-70);
    font-size: 12px;
    margin-top: 4px;
    display: block;
}
.inflow-form .error .error-info {
  color: #CF3A23;
  color: var(--inflow-preset-color-maple-50);
}
body.inflow-product-manufacturing .inflow-form .inflow-button {
  background-color: #393385 !important;
  background-color: var(--inflow-preset-color-grape) !important;
  color: #FFF !important;
}
body.inflow-product-manufacturing .inflow-form .inflow-button:after {
  background-image: url(/wp-content/themes/inflow2024-theme/icons/arrow-white.svg);
}