/* Login Splash Screen Styles */
.login-splash-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.login-splash-content {
    text-align: center;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    display: none;
}

.login-splash-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.splash-icon-wrapper {
    margin-bottom: 30px;
}

.splash-icon {
    width: 80px;
    height: 80px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #dc2626;
    font-size: 32px;
    animation: pulse 2s infinite;
}

.splash-title {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.4;
}

.splash-text {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.6;
}

.splash-btn {
    padding: 14px 32px;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.splash-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.4);
}

.splash-indicators {
    position: absolute;
    bottom: 40px;
    display: flex;
    gap: 8px;
}

.splash-dot {
    width: 8px;
    height: 8px;
    background: #e5e7eb;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.splash-dot.active {
    background: #dc2626;
    width: 24px;
    border-radius: 4px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(220, 38, 38, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
    }
}

.login-splash-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}
