.bg-violet{
    background-color: #af2ad4;
}

.btn.bg-violet{
    border: 1px solid #af2ad4;
    background-color: transparent;
    color: #af2ad4;
}

.btn.bg-violet:hover{
    background-color: #a41dc9;
    color: #fff;
}

.bg-grey{
    background: #f2f2f2;
}
.b-left-primary{
    height: 10px;
    width: 10px;
    border-radius: 50%;
    margin-right: 2px;
    background-color: #5e4ae3;
    display: inline-block;
}

.b-left-secondary{
    height: 10px;
    width: 10px;
    border-radius: 50%;
    margin-right: 2px;
    background-color: #f26ca7;
    display: inline-block;
}

.b-left-null{
    height: 0;
    width: 0;
}

.blink-me{
    animation: blink 3s linear infinite;
}

#current{
    text-transform: capitalize;
    font-weight: 600;
}

.login-wrap{
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh;
}

.login-box{
    border: 1px solid #e1e1e1;
    border-radius: 15px;
    padding: 30px;
    background: #f2f2f2;
    width: 30vw;
}

@keyframes blink {
    50%{
        opacity: 0;
    }
}

@media (max-width: 700px){
    .login-box{
        width: 90%;
    }
}