body fuse-splash-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f0f2f5 0%, #e6e9f0 100%);
    color: #1f2937;
    z-index: 999999;
    pointer-events: none;
    opacity: 1;
    visibility: visible;
    transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

body fuse-splash-screen .splash-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

body fuse-splash-screen .splash-logo {
    width: 80px;
    height: 80px;
    max-width: 80px;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    animation: float 3s ease-in-out infinite;
}

body fuse-splash-screen .splash-brand {
    margin-bottom: 40px;
}

body fuse-splash-screen .splash-title {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px 0;
    letter-spacing: -0.025em;
}

body fuse-splash-screen .splash-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #6b7280;
    margin: 0;
    opacity: 0.8;
}

body fuse-splash-screen .splash-spinner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 56px;
}

body fuse-splash-screen .splash-spinner > div {
    width: 12px;
    height: 12px;
    background-color: #2563eb;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: fuse-bouncedelay 1.4s infinite ease-in-out both;
    animation: fuse-bouncedelay 1.4s infinite ease-in-out both;
}

body fuse-splash-screen .splash-spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

body fuse-splash-screen .splash-spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

/* New animations for enhanced splash screen */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@-webkit-keyframes fuse-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0)
    }
    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes fuse-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

body:not(.fuse-splash-screen-hidden) {
    overflow: hidden;
}

body.fuse-splash-screen-hidden fuse-splash-screen {
    visibility: hidden;
    opacity: 0;
}


.googleSigninImg{
    width: 15vw;
    height: 4vw;
}
.googleSignin{
    display: flex;
    align-items: center;
    justify-content: center;
}