/* Auth Cover Mask */
.auth-cover-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(112deg, rgba(var(--bs-primary-rgb), 0.1) 0%, rgba(var(--bs-info-rgb), 0.1) 100%);
    z-index: 0;
}

/* Illustration Section */
.auth-illustration {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.auth-illustration::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: radial-gradient(circle, rgba(var(--bs-primary-rgb), 0.08) 0%, rgba(var(--bs-info-rgb), 0.08) 100%);
    animation: pulse 15s ease-in-out infinite;
}

.auth-illustration::after {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--bs-info-rgb), 0.1) 0%, rgba(var(--bs-info-rgb), 0.02) 70%);
    top: 60%;
    left: 40%;
    transform: translate(-50%, -50%);
    animation: pulse 20s infinite reverse;
}

.auth-illustration img {
    position: relative;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
} 