body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #2d2d39;
}
.divap{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(45, 45, 57, 0.70);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 20px;
    width: 97%;
}
.img1{
    border-radius: 10px;
}
.divap div div{
    margin-left: 20px;
    line-height: 5px;
}
.divap div div p:nth-child(1){
    font-size: 30px;
    font-weight: 600;
}
.a{
    position: relative;
    padding: 20px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0,0,0.5);
    margin: 40px;
    transition: 1s;
    text-decoration: none;
    overflow: hidden;
}
.a:hover{
    background-color: var(--clr);
    box-shadow: 0 0 10px var(--clr),
    0 0 30px var(--clr),
    0 0 60px var(--clr),
    0 0 160px var(--clr);
}
.a::before{
    content: '';
    position: absolute;
    width: 20px;
    height: 400%;
    background: linear-gradient(#45f3ff 50%, #ff2770 50%);
    transition: 1s;
    animation: animate1 4s linear infinite;
    border-radius: 10px;
}
.a:nth-child(2){
    transition-delay: 2.5ms;
}
@keyframes animate1{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}
.a:hover::before{
    width: 120%;
}
.a::after{
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 10px;
    background: #2d2d39;
}
/* .a:hover::after{
    background: var(--clr);
} */
.a samp{
    position: relative;
    z-index: 1;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
}
.gobk{
    text-decoration: none;
    color: #000;
    font-size: 20px;
    margin-left: 20px;
}

.body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #2d2d39;
    transform-style: preserve-3d;
}
.box{
    position: relative;
    width: 200px;
    height: 200px;
    transform-style: preserve-3d;
    transition: 1.5s;
    transform: perspective(1000px) rotateY(0deg);

}
.box span{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: center;
    transform-style: preserve-3d;
    transform: rotateY(calc(var(--r) * 45deg)) translateZ(300px);
    -webkit-box-reflect: below 0px linear-gradient(transparent,
    transparent, #0004  );

} 
.box span img {
    position: absolute;
    width: 100%;
    height: 100% ;
    top: 0;
    left: 0;
    object-fit: cover;
    user-select: none;
}
.btns{
    position: absolute;
    bottom: 100px;
    display: flex;
    gap: 30px;
}
.btns .btn{
    position: relative;
    width: 60px;
    height: 60px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btns .btn:active{
    background: #fff;
}
.btns .btn::before{
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg) translate(-2.5px, 2.5px);
}
.btns .btn.prev::before{
    transform: rotate(225deg) translate(-2.5px, 2.5px);
}
.btns .btn:active::before{
    border-top: 3px solid #000;
    border-right: 3px solid #000;
}
.h1n{
    position: absolute;
    transform: rotate(-330deg);
    font-size: 100px;
    text-align: center;
    width: 100%;
    color: #fff;
}
.input_legty{
    border-bottom: #ff2770 solid 1px ;
    width: 98%;
}
.input_legty:focus{
    border: none;
    border-bottom: #45f3ff solid 1px;
}