.box-ej{
    position: relative;
    width: 65px;
    height: 65px;
    background: gray;
    border-radius: 10%;
    overflow: hidden;
}

.box-ej::before{
    content: '';
    position: absolute;
    inset: -80px 25px;
    background: #0dcaf0;
    transition: 0.5s;
    animation: animate 5s linear infinite;
}

.box-ej:hover::before{
    inset: -20px -20px;
}

@keyframes animate {
    0%
    {
        transform: rotate(0deg);
    }
    100%
    {
        transform: rotate(360deg);
    }

}


.box-ej::after{
    content: '';
    position: absolute;
    inset: 2px;
    background: white;
    border-radius: 10%;
    z-index: 1;
}

.content-ej{
    position: absolute;
    inset: 5px;
    z-index: 3;
    border-radius: 10%;
    overflow: hidden;
}

.content-ej img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
    pointer-events: none;
}

.box-ej:hover .content-ej img{
    opacity: 50%;
}

span.ollow {
    color: #0dcaf0;
}

.form-ej{
    padding: 50px;
    margin: 50px;
    background: #f3f3f3;
    border-radius: 20px;
    border: solid #0dcaf0 1px;
}

.follow-pwd{
    margin-left: -30px;
    cursor: pointer;
}