/* --- Container styling --- */
.mx_form_container {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
   /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);*/
    max-width: 550px;
    font-family: 'Inter', 'Arial', sans-serif;
    background-color: #eee;
}

/* --- Headers Styling --- */
.mx_form_header { margin-bottom: 25px; }
.mx_sub_title { color: #00a651; font-weight: 600; font-size: 15px; display: block; margin-bottom: 5px; }
.mx_main_title { color: #000; font-weight: 800; font-size: 32px; margin: 0 0 10px 0; }
.mx_spoed_text { color: #555; font-size: 16px; margin: 0; }
.mx_spoed_text strong { color: #333; }

/* --- Formulier Algemeen --- */
form.mx_form { display: flex; flex-direction: column; gap: 15px; background: transparent; padding: 0; box-shadow: none; }
form.mx_form label { display: none; } /* Labels verbergen zoals in plaatje */

/* --- Input Wrapper & Icons --- */
.mx_form_input { position: relative; width: 100%; }

/* Line Awesome Icons in velden */
.mx_form_input i.la {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #333;
    z-index: 2;
    pointer-events: none;
}

/* Specifieke styling voor rode slotje bij email */
.email-lock { left: auto !important; right: 15px; color: #e74c3c !important; font-size: 16px !important; }

/* --- Inputs, Select, Textarea --- */
.mx_form_input input:not([type="checkbox"]):not([type="radio"]),
.mx_form_input select,
.mx_form_input textarea {
    width: 100%;
    padding: 4px 15px 4px 15px;; /* Extra padding links voor icoon */
    font-size: 16px;
    border-radius: 12px;
       border: 1px solid #eee;
    background-color: #fff;
    transition: all 0.3s ease;
    box-sizing: border-box;
    color: #333;
}

.mx_form_input textarea { padding-left: 15px; min-height: 120px; }

.mx_form_input input:focus, .mx_form_input select:focus, .mx_form_input textarea:focus {
    border-color: #eb651e;
    outline: none;
    box-shadow: 0 0 0 3px rgba(235, 101, 30, 0.1);
}

/* --- Placeholders --- */
::placeholder { color: #999; opacity: 1; }

/* --- Submit Button (Oranje) --- */
form.mx_form input[type="submit"] {
    width: 100%;
    padding: 16px;
    background-color: #eb651e; /* De oranje kleur uit het voorbeeld */
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

form.mx_form input[type="submit"]:hover { background-color: #d45617; }

/* --- Checkbox / Radio / Select --- */
.mx_options_container { display: flex; flex-direction: column; gap: 8px; padding: 5px; }
.mx_form_input_option { display: flex; align-items: center; gap: 10px; font-size: 15px; }
.mx_form_input_option input { width: 18px; height: 18px; accent-color: #eb651e; }

/* --- Foutmeldingen --- */
.mx_error input { border-color: #e74c3c !important; }
.mx_error_summary { color: #e74c3c; font-weight: 600; margin-bottom: 15px; }