/* MTN MoMo SSP Payment Form Styles */
.mtn-momo-ssp-form-wrap {
    max-width: 420px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.mtn-momo-ssp-header {
    background: #FFCC00;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mtn-momo-ssp-header strong { font-size: 16px; color: #111; }
.mtn-momo-ssp-header span   { font-size: 12px; color: #555; }
.mtn-momo-ssp-form          { padding: 20px; background: #fff; }
.mtn-momo-ssp-field         { margin-bottom: 16px; }
.mtn-momo-ssp-field label   { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: #374151; }
.mtn-momo-ssp-field input   { width: 100%; padding: 10px 12px; border: 1px solid #d1d5db; border-radius: 8px; font-size: 15px; box-sizing: border-box; }
.mtn-momo-ssp-field input:focus { outline: none; border-color: #FFCC00; box-shadow: 0 0 0 3px rgba(255,204,0,0.25); }
.mtn-momo-ssp-amount-display { display: flex; justify-content: space-between; padding: 12px; background: #fafafa; border: 1px solid #e5e7eb; border-radius: 8px; margin-bottom: 16px; font-size: 15px; }
.mtn-momo-ssp-amount-display strong { font-size: 18px; font-weight: 700; }
.mtn-momo-ssp-btn { width: 100%; padding: 12px; background: #FFCC00; color: #111; border: none; border-radius: 8px; font-size: 15px; font-weight: 700; cursor: pointer; transition: background 0.2s; }
.mtn-momo-ssp-btn:hover     { background: #f0c000; }
.mtn-momo-ssp-btn:disabled  { background: #d1d5db; color: #9ca3af; cursor: not-allowed; }
.mtn-momo-ssp-message       { margin-top: 12px; padding: 10px 14px; border-radius: 8px; font-size: 13px; display: none; }
.mtn-momo-ssp-message.success { background: #dcfce7; color: #166534; display: block; }
.mtn-momo-ssp-message.error   { background: #fee2e2; color: #991b1b; display: block; }
