/* Content/css/v2/sections/contact-us.css
   Powers _ContactUs.cshtml, added to the Pricing page after FAQ.
   Ported as-is from assets.3.0/css/style.1.0.6.css, in original order,
   plus one gap filled in (see below). #contact-form is an ID selector
   and .contact-area is a distinctively-named page-level wrapper, so
   both are left bare/unscoped like other page-container classes
   throughout this project (about-page-area, content-text-area, etc.) -
   low collision risk, consistent with that pattern.

   Radio button group ("Standard Quote / Enterprise Quote / Something
   else") removed per the new design - no .radio-container/.radio-group
   rules ever existed in the legacy sheet anyway (checked, zero
   matches), so nothing was lost by dropping that markup.

   NEW - .btn.submit-btn never had a color/background rule anywhere in
   the legacy sheet, only width/border-radius:5px. The new design's
   reference screenshot shows a fully rounded pill button, not a 5px
   corner - matches the sitewide pill convention already confirmed
   elsewhere in this project (Advisory board buttons, Access the eBook,
   Download now), not the old legacy shape. Used the same gradient
   already established for that convention rather than inventing a new
   one. */

.contact-area .section-title h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 45px;
    margin-bottom: 9px;
}

.contact-area .section-title p {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #D8D8D8;
}

#contact-form .form-control {
    border-radius: 5px;
    border: 0;
    height: 50px;
    line-height: 50px;
    margin-bottom: 10px;
    line-height: 19.5px;
    font-size: 13px;
    color: #A3A3A3;
}

#contact-form .form-control:focus {
    box-shadow: none;
}

#contact-form textarea.form-control {
    height: 130px;
}

#contact-form .col-md-6,
#contact-form .col-12 {
    padding-left: 5px;
    padding-right: 5px;
}

#contact-form .row {
    margin-left: -5px;
    margin-right: -5px;
}

.contact-area .section-title {
    margin-bottom: 30px;
}

#contact-form {
    padding-left: 33px;
    padding-right: 33px;
}

.pb-90 {
    padding-bottom: 90px !important;
}

.btn.submit-btn {
    height: 50px;
    width: 100%;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(91deg, #0B6DFF 3.02%, #0364F4 113.58%, #0364F4 113.58%);
}
