.emf-lead-funnel-form {
    padding: 5px;    
    border-radius: 5px;
}

.emf-form-field { margin-bottom: 0.3em; }

.emf-form-field input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
}

/* Submit Button */
.emf-lead-funnel-form button[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
	font-weight: bold;
}

.emf-lead-funnel-form button[type="submit"]:hover {
    background-color: #45a049;
}

#emf_message {
    color: green;              /* Sets the text color to green */
    background-color: #e8f5e9; /* Light green background */
    padding: 10px;             /* Padding for some space inside the box */
    margin-top: 10px;          /* Space between the form and the message box */
    border-radius: 5px;        /* Optional: rounds the corners of the message box */
    display: none;             /* Keeps it hidden until it's needed */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Optional: adds subtle shadow for better visibility */
}
