/* _content/CaptivePortal.UI/Components/Layout/MainLayout.razor.rz.scp.css */
main[b-0ynntx448l] {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

#blazor-error-ui[b-0ynntx448l] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss[b-0ynntx448l] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

/* _content/CaptivePortal.UI/Components/Pages/Home.razor.rz.scp.css */
.cp-main-wrapper[b-jp6ihwdc7y] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: radial-gradient(circle at center, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    padding: 20px;
}

.cp-fade-in[b-jp6ihwdc7y] {
    animation: cpFadeIn-b-jp6ihwdc7y 0.5s ease-out forwards;
}

@keyframes cpFadeIn-b-jp6ihwdc7y {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Login Container */
.cp-login-container[b-jp6ihwdc7y] {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 100%;
}

.cp-logo img[b-jp6ihwdc7y] {
    width: 120px;
    margin-bottom: 20px;
}

.cp-logo h1[b-jp6ihwdc7y] {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Buttons */
.cp-btn[b-jp6ihwdc7y] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cp-btn-google[b-jp6ihwdc7y] { background: #ffffff; color: #444; }
.cp-btn-google:hover[b-jp6ihwdc7y] { background: #f1f1f1; transform: translateY(-2px); }

.cp-btn-facebook[b-jp6ihwdc7y] { background: #1877f2; color: #ffffff; }
.cp-btn-facebook:hover[b-jp6ihwdc7y] { background: #166fe5; transform: translateY(-2px); }

.cp-btn-connect[b-jp6ihwdc7y] { 
    background: linear-gradient(135deg, #00b09b 0%, #96c93d 100%); 
    color: white; 
    margin-top: 20px;
    font-size: 1.1rem;
    padding: 16px;
}
.cp-btn-connect:hover[b-jp6ihwdc7y] { filter: brightness(1.1); transform: scale(1.02); }

/* Branding Frame */
.cp-branding-frame[b-jp6ihwdc7y] {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.cp-brand-grid[b-jp6ihwdc7y] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.cp-brand-item[b-jp6ihwdc7y] {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Progress Bar */
.cp-progress-bar[b-jp6ihwdc7y] {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 10px;
}

.cp-progress-fill[b-jp6ihwdc7y] {
    height: 100%;
    background: #00d2ff;
    transition: width 1s linear;
}

/* Success/Error */
.cp-success-icon[b-jp6ihwdc7y], .cp-error-icon[b-jp6ihwdc7y] {
    font-size: 4rem;
    margin-bottom: 20px;
}

.cp-success-container h2[b-jp6ihwdc7y] { color: #00ff88; }
.cp-error-container h3[b-jp6ihwdc7y] { color: #ff4d4d; }


