.center-window {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a237e 0%, #0d1642 50%, #1a237e 100%);
}

#container {
    position: relative;
    width: 100px;
    height: 100px;
}

#borda-animada {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    margin-top: -50px;
    margin-left: -50px;
    border: 3px solid transparent;
    border-top-color: #536dfe;
    border-bottom-color: #536dfe;
    border-radius: 50%;
    animation: judscan-spin-cw 1.4s linear infinite;
}

#animacao {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 72px;
    height: 72px;
    margin-top: -36px;
    margin-left: -36px;
    border: 3px solid transparent;
    border-left-color: #8c9eff;
    border-right-color: #8c9eff;
    border-radius: 50%;
    animation: judscan-spin-ccw 1.0s linear infinite;
}

#logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
}

#logo-color {
    width: 100%;
    height: auto;
}

@keyframes judscan-spin-cw {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes judscan-spin-ccw {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}
