body {
    margin: 0;
    padding: 0;
}

/* Loading Full Page */
.loading_top {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}

.loading_div {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}

/* Loading Element */
.loading {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}

.obj_top {
    width: 2px;
    height: 0px;
    background: rgb(141, 141, 141);
    margin: 0 2px;
    border-radius: 10px;
    animation: loading_top 1.2s infinite;
}

.obj_top:nth-child(2) {
    animation-delay: 0.15s;
}

.obj_top:nth-child(3) {
    animation-delay: 0.3s;
}

.obj_top:nth-child(4) {
    animation-delay: 0.45s;
}

.obj_top:nth-child(5) {
    animation-delay: 0.6s;
}

.obj_top:nth-child(6) {
    animation-delay: 0.75s;
}

.obj_top:nth-child(7) {
    animation-delay: 0.9s;
}

.obj_top:nth-child(8) {
    animation-delay: 1.05s;
}

.obj {
    width: 2px;
    height: 0px;
    background: rgb(255, 255, 255);
    margin: 0 2px;
    border-radius: 10px;
    animation: loading 1.2s infinite;
}

.obj:nth-child(2) {
    animation-delay: 0.15s;
}

.obj:nth-child(3) {
    animation-delay: 0.3s;
}

.obj:nth-child(4) {
    animation-delay: 0.45s;
}

.obj:nth-child(5) {
    animation-delay: 0.6s;
}

.obj:nth-child(6) {
    animation-delay: 0.75s;
}

.obj:nth-child(7) {
    animation-delay: 0.9s;
}

.obj:nth-child(8) {
    animation-delay: 1.05s;
}


.obj_black {
    width: 2px;
    height: 0px;
    background: rgb(0, 0, 0);
    margin: 0 2px;
    border-radius: 10px;
    animation: loading 1.2s infinite;
}

.obj_black:nth-child(2) {
    animation-delay: 0.15s;
}

.obj_black:nth-child(3) {
    animation-delay: 0.3s;
}

.obj_black:nth-child(4) {
    animation-delay: 0.45s;
}

.obj_black:nth-child(5) {
    animation-delay: 0.6s;
}

.obj_black:nth-child(6) {
    animation-delay: 0.75s;
}

.obj_black:nth-child(7) {
    animation-delay: 0.9s;
}

.obj_black:nth-child(8) {
    animation-delay: 1.05s;
}

@keyframes loading_top {
    0% {
        height: 0;
    }

    50% {
        height: 20px;
    }

    100% {
        height: 0;
    }
}

@keyframes loading {
    0% {
        height: 0;
    }

    50% {
        height: 30px;
    }

    100% {
        height: 0;
    }
}

/* Button Login */
.kirimlogin {
    position: relative;
    overflow: hidden;
}