/* Form Container */
.lead-form-with-flags-container {
    background: transparent;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    margin: 30px auto;
    font-family: 'Arial', sans-serif;
}

/* Input Fields */
.modern-input {
    width: 100%;
    height: 50px;
    margin-bottom: 20px;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    background-color: #ffffff !important; /* White background overrides theme */
    color: #5b5959 !important; /* Dark gray text overrides theme */
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    outline: none;
    padding: 0 15px;
    transition: box-shadow 0.3s ease;
}

.modern-input::placeholder {
    color: #5b5959 !important;
    font-size: 14px;
}

/* Focus State */
.modern-input:focus {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Submit Button */
.submit-button {
    width: 100%;
    height: 50px;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff; /* White text */
    background-color: #6a0dad; /* Purple background */
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.submit-button:hover {
    background-color: #800080; /* Darker purple on hover */
}

.submit-button:active {
    background-color: #4b0082; /* Even darker purple on click */
}

/* Response Message */
#response-message {
    font-size: 14px;
    color: #5b5959;
    text-align: center;
}
