/* Style the form container */
#lf_form_container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Style form labels */
#lf_form_container label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

/* Style form fields */
#lf_form_container input[type="text"],
#lf_form_container input[type="email"],
#lf_form_container textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

/* Style submit button */
#lf_form_container input[type="submit"] {
    background-color: #4285f4;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Hover effect for submit button */
#lf_form_container input[type="submit"]:hover {
    background-color: #357ae8;
}

/* Additional styling for a professional look */
#lf_form_container h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

/* Style success message */
#lf_form_container .lf_form-success {
    color: #4caf50;
    margin-top: 10px;
}

/* Style error message */
#lf_form_container .lf_form-error {
    color: #f44336;
    margin-top: 10px;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    #lf_form_container {
        width: 90%;
    }
}