/* form */
.formHubspot form {
    background: #ffffff;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
    gap: 2rem;
    border-bottom-left-radius: 80px;
    margin: 0 auto;
}
/* form */
.formHubspot fieldset {
    width: 100% !important;
    max-width: 100% !important;
    gap: 2rem;
}
.formHubspot fieldset.form-columns-2 {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
}
/* input */
.formHubspot .field.hs-form-field > label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1f276c;
    font-weight: 700;
}
/* input */
.formHubspot input[type=text], .formHubspot input[type=tel], .formHubspot input[type=email], .formHubspot select, .formHubspot textarea {
    display: block;
    appearance: none;
    width: 100% !important;
    background-color: #f4f3ff;
    border: 1px solid #f4f3ff;
    color: #1f276c;
    padding: 0.75rem 2rem 0.75rem 1rem;
    border-radius: 0.25rem;
}
.formHubspot input[type=text]:focus, .formHubspot input[type=tel]:focus, .formHubspot input[type=email]:focus, .formHubspot select:focus, .formHubspot textarea:focus {
    outline: 1px solid transparent;
    background-color: #ffffff;
    border: 1px solid #1f276c;
}
/* submit */
.formHubspot input[type=submit] {
    display: block;
    padding: 0.5rem 1.5rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-family: 'Raleway';
    text-align: center;
    font-weight: 500;
    color: #1f276c;
    text-transform: uppercase;
    border-radius: 9999px;
    background-color: #f7a600;
    margin: 0 auto;
}
.formHubspot input[type=submit]:hover {
    color: #ffffff;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}
/* message */
.formHubspot .hs-error-msg, .formHubspot .hs-main-font-element {
    display: block;
    margin-top: 0.5rem;
    color: red;
}