/* Container Styling */
#lf_form_container {
    text-align: center !important;
}

/* Labels */
form label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

/* Required field asterisk */
form label:after {
    content: " *";
    color: red;
}

/* Input fields */
form input[type="text"],
form input[type="email"],
form input[type="tel"],
form textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

/* Textarea specific */
form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
form button[type="submit"] {
    background-color: #0a123a; /* Dark navy blue */
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button[type="submit"]:hover {
    background-color: #1c1e5c; /* Slightly lighter on hover */
}

/* Placeholder text */
form input::placeholder,
form textarea::placeholder {
    color: #aaa;
    font-style: italic;
}

/* Optional: smaller spacing for company name since it's optional */
form input[name="company"] {
    margin-bottom: 20px;
}