.login_alert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    animation: show_alert_left 1.6s;
}

.login_alert_box {
    background-color: rgba(0,0,0,0.6);
    height: 60px;
    width: 100%;
    text-align: center;
}

.login_alert_box div {
    color: #66CCFF;
    font-size: 26px;
    line-height: 60px;
    cursor: default;
    font-weight: bold;
}

.login_alert_box div span {
    font-size: 20px;
}

.login_alert_box div a {
    font-size: 20px;
    line-height: 26px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    padding: 5px 20px;
    color: #000;
    background-color: #00CC99;
}

@keyframes show_alert_left {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}