/* Custom CSS overrides for hubspot form */

.hs-button {
    font-family: Manrope,'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0 auto;
    cursor: pointer;
    color: var(--white);
    display: inline-block;
    font-weight: 700;
    text-align: center;
    user-select: none;
    vertical-align: middle;
    padding: 0.45rem 0.95rem;
    line-height: 1.5;
    font-size: 0.9rem;
    border-radius: 0.5rem;
    background-color: var(--primary);
    border:0;
    transition: color 0.15s ease-in-out, background-color 0.15s, ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
}

.hs-button:hover {
    color: white;
    background-color: #00b09f;
    border-color: #00ab9b;
}

.hs-input {
    font-family: Manrope,'Helvetica Neue', Helvetica, Arial, sans-serif;
    display: block;
    border: 0.5px solid var(--gray);
    height: calc(1.5em + 1.8rem + 2px);
    border-radius: 0.5rem;
    background-color: white;
    width: 100%;
    padding: 0.9rem 1rem;
    color: var(--dark);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}


.hs-input:focus {
    border-color: var(--primary) !important;
    background-color: white !important;
    box-shadow: 0px 0px 0px 2px var(--light-teal);
}

.hs-input:focus-visible {
    outline: none;
}

.hbspt-form label {
    font-family: Manrope,'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.32px;
    color: var(--dark);
    margin-bottom: 4px;
}

.hs-form-field {
    margin-bottom: 1rem;
}

.hbspt-form .hs-form-required {
    color: var(--danger);
}

.hbspt-form .actions {
    display: flex;
    align-items: center;
}

.hbspt-form  ul {
    list-style: none;
    padding: 0;
}

.hbspt-form .hs-error-msgs li label  {
    font-size: 12px;
    padding-top: .25rem;
    color: var(--danger);
    font-weight: normal;
    margin-bottom: 0;
}