/* ── MERC Leads Form ──────────────────────────────────────── */

.merc-leads-form-wrap {
    background: #ffffff;
    border: 1px solid #e8e0f5;
    border-top: 4px solid #4B2D8F;
    border-radius: 8px;
    padding: 36px 40px;
    max-width: 520px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 24px rgba(75, 45, 143, 0.08);
}

.merc-leads-header {
    margin-bottom: 28px;
}

.merc-leads-title {
    font-size: 22px;
    font-weight: 700;
    color: #4B2D8F;
    margin: 0 0 10px;
    line-height: 1.3;
}

.merc-leads-subtitle {
    font-size: 15px;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

.merc-leads-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.merc-leads-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.merc-leads-field label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.merc-leads-field input {
    border: 1px solid #d0c8e8;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 15px;
    font-family: Arial, sans-serif;
    color: #1a1a1a;
    background: #faf9fe;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.merc-leads-field input:focus {
    border-color: #7B4FD4;
    box-shadow: 0 0 0 3px rgba(123, 79, 212, 0.12);
    background: #ffffff;
}

.merc-leads-btn {
    background: #4B2D8F;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 700;
    font-family: Arial, sans-serif;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    margin-top: 4px;
    letter-spacing: 0.3px;
}

.merc-leads-btn:hover {
    background: #7B4FD4;
}

.merc-leads-btn:active {
    transform: scale(0.98);
}

.merc-leads-btn:disabled {
    background: #a08cc8;
    cursor: not-allowed;
}

.merc-leads-message {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: 6px;
    font-size: 15px;
    line-height: 1.5;
}

.merc-leads-message.success {
    background: #f0ebff;
    color: #4B2D8F;
    border: 1px solid #C8A8FF;
}

.merc-leads-message.error {
    background: #fff0f0;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.merc-leads-privacy {
    font-size: 12px;
    color: #aaa;
    text-align: center;
    margin: 16px 0 0;
}

@media (max-width: 560px) {
    .merc-leads-form-wrap {
        padding: 24px 20px;
    }
    .merc-leads-title {
        font-size: 19px;
    }
}
