/*
 * INCEPTION LOGIN ALERT V2B
 * Static CSS only.
 */

.auth-card .auth-error {
    position: relative !important;

    margin: 0 0 18px 0 !important;
    padding: 13px 15px 13px 46px !important;

    border:
        1px solid rgba(215,108,99,.30) !important;

    border-radius: 13px !important;

    background:
        linear-gradient(
            135deg,
            rgba(215,108,99,.11),
            rgba(238,89,99,.055)
        ) !important;

    color: #a5484d !important;

    font-size: 12.5px !important;
    font-weight: 600 !important;
    line-height: 1.5 !important;
    text-align: left !important;

    box-shadow:
        0 5px 16px
        rgba(190,82,82,.06) !important;
}

.auth-card .auth-error::before {
    content: "!" !important;

    position: absolute !important;
    left: 14px !important;
    top: 50% !important;

    transform:
        translateY(-50%) !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 22px !important;
    height: 22px !important;

    border-radius: 999px !important;

    background:
        linear-gradient(
            135deg,
            #d76c63,
            #ee5963
        ) !important;

    color: #fff !important;

    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1 !important;

    box-shadow:
        0 3px 8px
        rgba(215,108,99,.22) !important;
}

@media (max-width:640px) {
    .auth-card .auth-error {
        margin-bottom: 15px !important;
        padding: 12px 13px 12px 43px !important;
        border-radius: 12px !important;
        font-size: 12px !important;
    }

    .auth-card .auth-error::before {
        left: 12px !important;
    }
}
