@charset "UTF-8";
/*
Theme Name: Lux Wall
Version: 1.0
*/

/* ==========================================
   LUXWALL HUBSPOT FORM STYLES
   ========================================== */

/* Form container */
.hs-form {
    width: 100%;
    font-family: inherit;
}

/* Individual fields */
.hs-form .hs-form-field {
    margin-bottom: 24px;
}

/* Labels */
.hs-form label {
    display: block;
    margin-bottom: 8px;

    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

/* Required asterisk */
.hs-form .hs-form-required {
    margin-left: 2px;
}

/* Text inputs, email, phone, dropdowns, etc. */
.hs-form input[type="text"],
.hs-form input[type="email"],
.hs-form input[type="tel"],
.hs-form input[type="number"],
.hs-form input[type="url"],
.hs-form select,
.hs-form textarea {
    width: 100%;
    min-height: 52px;
    padding: 12px 16px;

    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;

    background: transparent;
    border: 1px solid #000;
    border-radius: 0;

    box-sizing: border-box;
}

/* Text areas */
.hs-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* Focus state */
.hs-form input[type="text"]:focus,
.hs-form input[type="email"]:focus,
.hs-form input[type="tel"]:focus,
.hs-form input[type="number"]:focus,
.hs-form input[type="url"]:focus,
.hs-form select:focus,
.hs-form textarea:focus {
    outline: 1px solid #000;
    outline-offset: 1px;
}

/* Remove default list styling */
.hs-form ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Checkbox and radio labels */
.hs-form .inputs-list label {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    margin-bottom: 8px;
    font-weight: 400;
}

/* Checkbox / radio controls */
.hs-form input[type="checkbox"],
.hs-form input[type="radio"] {
    margin-top: 3px;
}

/* Field descriptions */
.hs-form .hs-field-desc {
    margin-top: 6px;

    font-size: 14px;
    line-height: 1.4;
}

/* Error messages */
.hs-form .hs-error-msgs {
    margin-top: 6px;
}

.hs-form .hs-error-msg {
    font-size: 14px;
}

/* Submit area */
.hs-form .hs-submit {
    margin-top: 30px;
}

/* Submit button */
.hs-form input[type="submit"],
.hs-form .hs-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 14px 28px;

    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;

    border: 1px solid #000;
    border-radius: 0;

    cursor: pointer;
}

/* Legal / consent area */
.hs-form .legal-consent-container {
    margin-top: 20px;
}

.hs-form .legal-consent-container,
.hs-form .legal-consent-container p {
    font-size: 13px;
    line-height: 1.5;
}

.hsfc-CheckboxInput {width:10px;}

.hsfc-DataPrivacyField {font-size:.75em !important;}

/* Keep fields from overflowing on mobile */
.hs-form input,
.hs-form select,
.hs-form textarea {
    max-width: 100%;
}