
/* LOADER FULL SCREEN */
.loader-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* CONTAINER */
.loader-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* LOGO */
.loader-logo {
    width: 70px;
    height: 70px;
    animation: spin 2s linear infinite;
}

/* TEXT */
.loader-text {
    font-size: 20px;
    font-weight: bold;
    color: #2d2f8f;
    letter-spacing: 1px;
    animation: fade 1.5s ease-in-out infinite;
}

/* ANIMASI PUTAR */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ANIMASI TEXT */
@keyframes fade {
    0%,100% { opacity: 1; }
    50% { opacity: 0.3; }
}
.loader-text {
    background: linear-gradient(90deg, #2d2f8f, #e91e63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
