/**
 * PSP Data Manager — checkout email validation styles.
 *
 * `.psp-dm-error` is added to the email input itself (red border); the
 * inline message is rendered as `.psp-dm-error-message` beneath the field.
 */

input.psp-dm-error,
.psp-dm-error input {
    border-color: #e2401c !important;
    box-shadow: 0 0 0 1px #e2401c;
}

.psp-dm-error-message {
    display: block;
    margin-top: 4px;
    color: #e2401c;
    font-size: 0.85em;
    line-height: 1.4;
}
