/* Consult form */

.consult__form {
    display: flex;
    flex-direction: column;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-group input, .form-group textarea,
.form-group input:focus, .form-group textarea:focus {
    border: 1px solid ;
    border-color: #2B2A2933 !important;
    padding: 12px 16px;
    background: #FFF !important;
}

.form-group label {
    font-family: Manrope;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #2B2A29;
}

.form-group label.required::after {
    content: '*';
    color: #AD2B2E;
}

.consult__form {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .consult__form button {
    color: #FFF;
    background-color: #AD2B2E;
    font-family: Manrope;
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    padding: 12px 32px;
  }

  .consult__form .form-group.submit p {
    margin: 16px 0;
    font-family: Manrope;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
  }

  .consult__form .form-group.submit p a {
    color: #AD2B2E;
    text-decoration: underline;
  }

  .consult__form .form-header-block {
    display: flex;
    flex-direction: column;
    margin-bottom: 32px;
    gap: 16px;
  }

  .consult__form .form-header-block .form-head {
    font-family: Manrope;
    font-weight: 600;
    font-size: 54px;
    line-height: 130%;
    letter-spacing: 0%;
    
  }

  .consult__form .form-header-block .form-subhead {
    font-family: Manrope;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #2B2A2980;

  }





/* Способ A: Если label содержит текст "ИНН" */
.bx-soa-custom-label:contains("ИНН")::before {
    content: "*";
    color: #e02222;
    margin-right: 4px;
}

/* Способ B: Если label находится рядом с полем ИНН */
input[name="ORDER_PROP_10"] + .bx-soa-custom-label::before,
.bx-soa-custom-label:has(+ input[name="ORDER_PROP_10"])::before {
    content: "*";
    color: #ff0000;
    margin-right: 4px;
}