.popup_notify {
    position: fixed;
    left: 3rem;
    bottom: -20rem;
    z-index: 90;
    width: 30rem;
    height: 9.5rem;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    background: var(--theme_color);
    color: white;
    text-align: left;
    padding: 2.2rem;
    visibility: hidden;
    transition: all 0.3s ease;
}
.popup_notify.active {
    visibility: visible;
    bottom: 3rem;
}
.popup_notify p {
    font-size: 0.9rem;
    line-height: 1.4;
    max-width: 90%;
}
.popup_notify p strong {
    font-size: 1rem;
    display: block;
    margin-bottom: 0.5rem;
}
.popup_notify div.icon {
    width: 6.5rem;
}
.popup_notify div.icon span {
    width: 6rem;
    height: 6rem;
    display: block;
    position: relative;
}
.popup_notify div.icon span:after {
    content: "";
    position: absolute;
    background: url('../img/login/password.svg') no-repeat center;
    display: block;
    width: 3.5rem;
    height: 3.5rem;
    top: 0.75rem;
    left: 0.75rem;
}
.popup_notify div.icon.email_exist span:after {
    background: url('../img/login/email.svg') no-repeat center;
}
.popup_notify div.icon span:before {
    content: "";
    position: absolute;
    background: #eeeeee7e;
    display: block;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
}
.popup_notify span.delete {
    display: block;
    width: 1rem;
    height: 1rem;
    display: block;
    position: absolute;
    right: 2rem;
    top: 2rem;
    background: url('../img/login/close.svg') no-repeat center;
    cursor: pointer;
    transition: all 0.2s ease;
}
.popup_notify span.delete:hover {
    transform: rotate(90deg);
}