body {
    background-color: #ffffff;
    color: #000000;
    font-family: 'Poppins', sans-serif;
}

.loader {
    font-size: 5px;
    position: absolute;
    top: 53%;
    left: 50%;
    width: 2.5em;
    height: 2.5em;
    border-radius: 50%;
    margin: -1.25em 0 0 -1.25em;
    text-indent: -9999em;
    transform: translateZ(0);
    animation-fill-mode: both;
    animation: loader-animation 1.8s infinite ease-in-out;
    color: #4285F4;
    /* Warna biru Google Maps */
}

.loader:before,
.loader:after,
.loader-green {
    content: '';
    position: absolute;
    top: 0;
    width: 2.5em;
    height: 2.5em;
    border-radius: 50%;
    animation-fill-mode: both;
    animation: loader-animation 1.8s infinite ease-in-out;
}

.loader:before {
    left: -3.5em;
    color: #EA4335;
    /* Warna merah Google Maps */
    animation-delay: -0.32s;
}

.loader:after {
    left: 3.5em;
    color: #FBBC05;
    /* Warna kuning Google Maps */
    animation-delay: 0.32s;
}

/* Menambahkan warna hijau sebagai elemen tambahan */
.loader-green {
    top: 3.5em;
    left: -0.5em;
    color: #34A853;
    /* Warna hijau Google Maps */
    animation-delay: -0.64s;
}

@keyframes loader-animation {

    0%,
    80%,
    100% {
        box-shadow: 0 2.5em 0 -1.3em;
    }

    40% {
        box-shadow: 0 2.5em 0 0;
    }
}

.atas {
    margin-top: -5em;
    text-align: center;
}