
.cont{

    display: block;
    width: 300px;
    margin: auto;
    padding: 20px;
    color: #7cf03d;
    z-index: 100;
    visibility: hidden;
    opacity: 0;
    animation: show-content 1.5s linear forwards;
    animation-delay: 1.4s;
}
/*this is for after anim it will come*/
@keyframes show-content{
    100%{
        visibility: visible;
        opacity: 1;
    }
}

.cont input{
    width: 100%;
    padding: 8px;
    margin-top: 5px;
}

.cont button{
    margin-top: 10px;
    display: inline-block;
    text-decoration: none;
    background-color:#7cf03d;
    border: 2px solid #7cf03d;
    border-radius: 40px;
    box-shadow: 0 0 10px #7cf03d;
    font-size: 16px;
    color: #1f242d;
    font-weight: 600;
    transition: .5s;
    margin-right: 10px;
}
.cont button:hover{
    background:transparent;
    color: #7cf03d;
    box-shadow: none;
}
.anim{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: -1;
}
.anim .bar{
    width: 100%;
    height: 16.6%;
    background: #1f242d;
    transform: translateX(-100%);
    animation: show .5s ease-in-out forwards;
    animation-delay: calc(.1s * var(--i));
}
@keyframes show{
    100%{
        transform: translateX(0%);
    }
}