body.login-page {
    background-color: var(--background-color);
}

.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.login-wrapper,
.login-wrapper.solo {
    position: relative;
    z-index: 10;
}

.bg-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 201, 36, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 201, 36, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 40% 40%, rgba(15, 37, 66, 0.5) 0%, transparent 60%);
    animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: -100px;
    right: -50px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    border: 2px solid var(--primary-color);
    bottom: 10%;
    left: 5%;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    top: 50%;
    right: 15%;
}

.shape-4 {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    bottom: 20%;
    right: 25%;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(20px) rotate(-5deg);
    }
}