/* .loading-screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    gap: 0;
}

.logo {
    width: 120px;
    height: auto;
}

.progress-bar {
    width: 80%;
    max-width: 320px;
    height: 8px;
    background-color: #e6e6e6;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, #f4ca1c, #35b274);
    border-radius: 0 10px 10px 0;
    animation: loading 3s ease-in-out forwards;
    transform-origin: left;
}

@keyframes loading {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
} */

.loading-screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    gap: 0;
}

.logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
    /* Atur jarak sesuai kebutuhan */
}

.progress-bar {
    width: 80%;
    max-width: 320px;
    height: 8px;
    background-color: #e6e6e6;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-top: 0;
    /* Pastikan tidak ada margin tambahan */
}

.progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, #f4ca1c, #35b274);
    border-radius: 0 10px 10px 0;
    animation: loading 3s ease-in-out forwards;
    transform-origin: left;
}

@keyframes loading {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}