/*Hubspot*/
/* Container Spacing */
#hubspot-form-container {
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif; /* Using a clean sans-serif font */
}

/* Hide the default HubSpot labels if you want a cleaner look, 
   or style them like the image */
#hubspot-form-container label {
    display: block;
    font-weight: 500;
    font-size: 16px;
    color: #1a202c;
    margin-bottom: 8px;
}

/* Style the asterisk */
#hubspot-form-container .hs-form-required {
    color: #e53e3e;
}

/* Input & Textarea Fields */
#hubspot-form-container .hs-input {
    width: 100% !important;
    padding: 12px 16px !important;
    font-size: 16px;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    background-color: #ffffff !important;
    color: #2d3748 !important;
    transition: border-color 0.2s ease;
}

#hubspot-form-container .hs-input:focus {
    outline: none;
    border-color: #4a5568 !important;
}

/* Space between form fields */
#hubspot-form-container .hs-form-field {
    margin-bottom: 24px;
}

/* The "Send" Button */
#hubspot-form-container .hs-button {
    width: 100% !important;
    background-color: #cea835 !important; /* Dark slate/black */
    color: #ffffff !important;
    padding: 14px 24px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: background-color 0.2s ease;
}

#hubspot-form-container .hs-button:hover {
    background-color: #2d3748 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #hubspot-form-container .hs-input {
        font-size: 14px;
    }
}


#hubspot-form-container .hs-error-msgs,
#hubspot-form-container .hs-error-msg {
    color: #e53e3e !important; /* red */
    font-size: 14px;
    font-weight: 500;
    margin-top: 6px;
    line-height: 1.4;
}

#hubspot-form-container .hs-input.error,
#hubspot-form-container .hs-form-field.hs-error .hs-input {
    border-color: #e53e3e !important;
}

#hubspot-form-container .hs-input.error:focus {
    box-shadow: 0 0 0 2px rgba(229, 62, 62, 0.15);
}

#hubspot-form-container .hs-button:hover,
#hubspot-form-container .hs-button:focus,
#hubspot-form-container .hs-button:active {
    background-color: transparent !important;
    color: #cea835 !important;
    box-shadow: none !important;
    outline: none !important;
}

#hubspot-form-container .hs-button {
    border: 2px solid #cea835 !important;
    transition: background-color 0.2s ease, color 0.2s ease;
}

#hubspot-form-container .hs-button {
    border: 2px solid #cea835 !important;
    transition: background-color 0.2s ease, color 0.2s ease;
}


#hubspot-form-container .hs-button {
    -webkit-tap-highlight-color: transparent;
}

