/* Form wrapper */
.mpForm {
    max-width: 700px;
    margin: 0 auto;
    font-family: inherit;
}

/* Remove default list styling */
.mpForm ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Individual fields */
.mpForm .mpQuestionTable {
    margin: 0 0 20px;
    padding: 0;
}

/* Labels */
.mpForm .mpFormLabel {
    margin-bottom: 7px;
}

.mpForm .descriptionLabel {
    display: inline-block;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
}

/* Required asterisk */
.mpForm .mandatorySign {
    color: #d00;
}

/* Field wrapper */
.mpForm .mpFormField {
    width: 100%;
}

/* Text inputs */
.mpForm input[type="text"],
.mpForm input[type="email"],
.mpForm input[type="tel"] {
    box-sizing: border-box;
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    font: inherit;
    line-height: 1.4;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Focus state */
.mpForm input[type="text"]:focus,
.mpForm input[type="email"]:focus,
.mpForm input[type="tel"]:focus {
    outline: none;
    border-color: #333;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
}

/* Placeholder / sublabel text */
.mpForm .sublabel {
    margin-top: 5px;
    font-size: 13px;
    color: #777;
}

/* Submit button */
.mpForm .submitButton {
    display: inline-block;
    padding: 12px 25px;
    border: 0;
    border-radius: 4px;
    background: #222;
    color: #fff;
    font: inherit;
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
    transition: background 0.2s ease;
}

.mpForm .submitButton:hover {
    background: #444;
}

/* Error summary */
.mpForm .mpErrorSummary {
    margin-bottom: 20px;
    padding: 12px 15px;
    border: 1px solid #d00;
    border-radius: 4px;
    background: #fff5f5;
    color: #d00;
}

/* Hidden fields/questions */
.mpForm .mpQuestionTable[style*="display: none"],
.mpForm .mpQuestionTable[style*="display:none"] {
    display: none !important;
}

/* Mobile */
@media (max-width: 600px) {
    .mpForm {
        width: 100%;
    }

    .mpForm .mpQuestionTable {
        margin-bottom: 16px;
    }

    .mpForm .submitButton {
        width: 100%;
    }
}