.app-loading {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: #eeffcc;
    color: #243018;
}

.app-loading-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.app-loading-bar {
    width: min(12rem, 60vw);
    height: 0.35rem;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(36, 48, 24, 0.16);
}

.app-loading-bar::before {
    content: "";
    display: block;
    width: 45%;
    height: 100%;
    background: #1b6ec2;
    animation: app-loading-slide 1s ease-in-out infinite;
}

@keyframes app-loading-slide {
    0% {
        transform: translateX(-110%);
    }

    100% {
        transform: translateX(260%);
    }
}
