* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 8px;
    filter: brightness(0);
}

.title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 2px;
}

.redirect-text {
    font-size: 16px;
    color: #666666;
    margin-bottom: 8px;
}

.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 8px 0;
}

/* From Uiverse.io by barisdogansutcu */
svg {
    width: 3.25em;
    transform-origin: center;
    animation: rotate4 2s linear infinite;
}

circle {
    fill: none;
    stroke: #5274FF;
    stroke-width: 2;
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    animation: dash4 1.5s ease-in-out infinite;
}

@keyframes rotate4 {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash4 {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dashoffset: -125px;
    }
}

.wait-text {
    font-size: 14px;
    color: #999999;
}
