/**
 * Matches welcome.blade.php: 135° gradient + soft violet / cyan / amber orbs.
 */
.auth-landing-page {
    --landing-bg-1: #0b1026;
    --landing-bg-2: #1f1340;
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--landing-bg-1) 0%, var(--landing-bg-2) 100%);
    color: #eef1ff;
}

.auth-landing-orbs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.auth-landing-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(75px);
    opacity: 0.35;
    animation: auth-landing-orb-pulse 6s ease-in-out infinite;
}

.auth-landing-orb-one {
    width: 320px;
    height: 320px;
    left: -100px;
    top: -50px;
    background: #8b5cf6;
}

.auth-landing-orb-two {
    width: 280px;
    height: 280px;
    right: -50px;
    top: 25%;
    background: #06b6d4;
    animation-delay: 1.5s;
}

.auth-landing-orb-three {
    width: 340px;
    height: 340px;
    left: 35%;
    bottom: -120px;
    background: #f59e0b;
    animation-delay: 3s;
}

@keyframes auth-landing-orb-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.45;
    }
}

.auth-landing-front {
    position: relative;
    z-index: 1;
}
