.login-page {
    width: 100%;
    max-width: 1536px;
    margin: 0 auto;
}

.heading_part::after {
    content: "";
    position: absolute;
    top: -44px;
    right: -88px;
    background-image: url("/images/assets/line1.png");
    width: 79px;
    height: 75px;
}



.heading_part::before {
    content: "";
    position: absolute;
    top: 47px;
    right: -88px;
    background-image: url("/images/assets/line2.png");
    width: 250px;
    height: 22px;
    background-repeat: no-repeat;
}

.rotate-slow {
    animation: spin 40s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width:1280px) {
    .heading_part::after {
        content: "";
        transform: scale(0.7);
        top: -38px;
        right: -74px;
    }

    .heading_part::before {
        content: "";
        transform: scale(0.7);

    }
}

@media (max-width:1024px) {
    .heading_part::after {
        content: "";
        transform: scale(0.5);
        top: -30px;
        right: -60px;
    }

    .heading_part::before {
        content: "";
        transform: scale(0.5);
    }
}