/**
 * Weller Hire - Product Enquiry Form Styles
 * Filename: product-enquiry-form.css
 * Version: 1.1.4
 * Changes: Matched Legend text color to #777 and made asterisk red.
 */

.weller-enquiry-container {
    max-width: 650px;
    margin: 20px auto;
    padding: 10px;
    font-family: inherit;
}

/* Notice Box at Top */
.weller-notice-box {
    background-color: #f0f7ff;
    border-left: 4px solid #1C62AA;
    padding: 20px;
    margin-bottom: 20px;
    font-size: 14.5px;
    line-height: 1.6;
    color: #333;
    border-radius: 0 4px 4px 0;
}

.weller-notice-box a {
    color: #1C62AA;
    text-decoration: underline;
    font-weight: 700;
}

/* 1. THE GREY LEGEND (Matching woo-tweaks) */
.weller-required-legend {
    font-size: 13px;
    color: #777; /* Standard Weller Grey */
    margin-bottom: 15px;
    font-style: italic;
    font-weight: 600;
    display: block;
}

/* 2. THE RED ASTERISKS (In Legend and Labels) */
.weller-req {
    color: #d93025 !important; /* Weller Required Red */
    margin-right: 2px;
    font-weight: bold;
    font-style: normal;
}

/* --- Layout & Input Styles --- */
.weller-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.weller-column {
    flex: 1;
}

.weller-full {
    margin-bottom: 20px;
}

.weller-enquiry-container label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1C62AA;
    font-size: 14px;
}

.weller-enquiry-container input[type="text"],
.weller-enquiry-container input[type="email"],
.weller-enquiry-container input[type="tel"],
.weller-enquiry-container textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    box-sizing: border-box;
    font-size: 15px;
}

.weller-enquiry-container input[name="dynamictext-778"] {
    background-color: #f4f7fa;
    border: 1px dashed #1C62AA;
    color: #444;
    font-style: italic;
}

.weller-enquiry-container input[type="submit"] {
    background-color: #1C62AA;
    color: #F9DE2B;
    border: 2px solid #1C62AA;
    padding: 12px 35px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.weller-enquiry-container input[type="submit"]:hover {
    background-color: #F9DE2B;
    color: #1C62AA;
}

@media (max-width: 600px) {
    .weller-row {
        flex-direction: column;
        gap: 20px;
    }
}