/* Login Success Styles - Based on Auth Dialog */

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    height: 100vh;
    overflow: hidden;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 0% 100%;
    }
}

/* Loading overlay - enhanced version of critical CSS */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(to bottom, #FFFFFF 0%, #F8FBFF 15%, #F0F8FF 30%, #E8F4FD 50%, #D6E8F8 70%, #A8C7EA 85%, #4A90E2 100%);
    background-size: 100% 200%;
    animation: gradientShift 4s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.loading-content {
    text-align: center;
    max-width: 300px;
    padding: 20px;
}



/* Container styles for warning and error sections */
.auth-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    padding: 40px 32px;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.auth-icon {
    width: 72px;
    height: 72px;
    background: #1B2A56;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: white;
    box-shadow: 0 4px 12px rgba(27, 42, 86, 0.2);
}

.auth-icon svg {
    width: 36px;
    height: 36px;
}

.auth-title {
    font-size: 24px;
    font-weight: 600;
    color: #212121;
    margin: 0 0 12px 0;
    letter-spacing: -0.3px;
}

.auth-description {
    font-size: 16px;
    color: #757575;
    margin: 0 0 32px 0;
    line-height: 1.5;
}

.auth-note {
    font-size: 14px;
    color: #757575;
    margin: 0;
    opacity: 0.8;
}

/* Allow JavaScript to hide loading overlay when needed */
.loading-overlay[style*="none"] {
    display: none !important;
}

/* Remove gradient background when warning/error sections are shown */
body.warning-active {
    background: #f5f5f5 !important;
    animation: none !important;
}

/* Fallback for browsers that support :has() */
body:has(#host-warning-section:not([style*="display: none"])) {
    background: #f5f5f5 !important;
    animation: none !important;
}

/* Section styles */
#host-warning-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    z-index: 1001;
}


/*# sourceMappingURL=login-success.8a29f0dc1bb446fbe2e2.css.map*/