body {
    font-family: "Nunito", sans-serif;
}

/* Subtle wave pattern on the right panel */
.bj-panel-right {
    background-color: #2e2e2e;
    background-image:
        radial-gradient(
            ellipse at 80% 20%,
            rgba(232, 152, 29, 0.18) 0%,
            transparent 55%
        ),
        radial-gradient(
            ellipse at 20% 80%,
            rgba(232, 152, 29, 0.1) 0%,
            transparent 50%
        );
}

/* Animated ring around the logo mark */
.bj-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(232, 152, 29, 0.25);
    animation: pulse-ring 3s ease-in-out infinite;
}

@keyframes pulse-ring {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.06);
        opacity: 1;
    }
}

/* Input focus glow */
.bj-input:focus {
    outline: none;
    border-color: #e8981d;
    box-shadow: 0 0 0 3px rgba(232, 152, 29, 0.15);
}

/* Staggered animation delays */
.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}
