.prifix_loading_box {
    position: relative;
    width: 200px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-evently
}

.prifix_loading_box span {
    display: block;
    height: 20px;
    width: 20px;
    background: #000;
    border-radius: 50%;
    animation: all-effect 0.6s linear infinite alternate;
    transform: scale(0)
}

.prifix_loading_box span:nth-child(1) {
    animation-delay: 0.1s
}

.prifix_loading_box span:nth-child(2) {
    animation-delay: 0.2s
}

.prifix_loading_box span:nth-child(3) {
    animation-delay: 0.3s
}

.prifix_loading_box span:nth-child(4) {
    animation-delay: 0.4s;
    background: #534EBC
}

.prifix_loading_box span:nth-child(5) {
    animation-delay: 0.5s;
    background: #534EBC
}

@keyframes all-effect {
    100% {
        transform: scale(1)
    }
}

.footer-logo{
    height: 150px;
    padding: 10px;
    margin-bottom: 15px;
}

label.error.fail-alert {
    color: red;
    padding: 5px 0 5px 5px;
}
input.error {
    border:1px dotted red;
 }