/**
 * Disallow Gmail Registration Styles
 * ocStore 2.3 / OpenCart 2.3 & Simple
 */

.gmail-disallowed-alert {
    display: block;
    margin-bottom: 8px;
    padding: 8px 12px;
    font-size: 13px;
    line-height: 1.4;
    color: #a94442;
    background-color: #f2dede;
    border: 1px solid #ebccd1;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    animation: gmailAlertFadeIn 0.2s ease-in-out;
}

.gmail-disallowed-alert i.fa {
    margin-right: 6px;
    font-size: 14px;
    vertical-align: -1px;
}

@keyframes gmailAlertFadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
