/* _content/WebApi/Components/Layout/AuthLayout.razor.rz.scp.css */
.auth-main[b-glhe29n9t2] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-content[b-glhe29n9t2] {
    width: 100%;
    max-width: 28rem;
}
/* _content/WebApi/Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-e2srjv9x3t],
.components-reconnect-repeated-attempt-visible[b-e2srjv9x3t],
.components-reconnect-failed-visible[b-e2srjv9x3t],
.components-pause-visible[b-e2srjv9x3t],
.components-resume-failed-visible[b-e2srjv9x3t],
.components-rejoining-animation[b-e2srjv9x3t] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-e2srjv9x3t],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-e2srjv9x3t],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-e2srjv9x3t],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-e2srjv9x3t],
#components-reconnect-modal.components-reconnect-retrying[b-e2srjv9x3t],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-e2srjv9x3t],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-e2srjv9x3t],
#components-reconnect-modal.components-reconnect-failed[b-e2srjv9x3t],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-e2srjv9x3t] {
    display: block;
}


#components-reconnect-modal[b-e2srjv9x3t] {
    background-color: var(--card);
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-e2srjv9x3t 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-e2srjv9x3t 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-e2srjv9x3t 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-e2srjv9x3t]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-e2srjv9x3t 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-e2srjv9x3t {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-e2srjv9x3t {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-e2srjv9x3t {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-e2srjv9x3t] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-e2srjv9x3t] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-e2srjv9x3t] {
    border: 0;
    background-color: var(--accent);
    color: var(--accent-foreground);
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-e2srjv9x3t] {
        opacity: 0.85;
    }

    #components-reconnect-modal button:active[b-e2srjv9x3t] {
        opacity: 0.75;
    }

.components-rejoining-animation[b-e2srjv9x3t] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-e2srjv9x3t] {
        position: absolute;
        border: 3px solid var(--ring);
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-e2srjv9x3t 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-e2srjv9x3t] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-e2srjv9x3t {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* _content/WebApi/Components/Pages/Login.razor.rz.scp.css */
.auth-title[b-51gw4i78t1] {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.auth-subtitle[b-51gw4i78t1] {
    color: var(--muted-foreground);
    margin-bottom: 1.25rem;
}

.auth-card[b-51gw4i78t1] {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.auth-field[b-51gw4i78t1] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.auth-field label[b-51gw4i78t1] {
    font-size: 0.875rem;
    font-weight: 600;
}

.auth-input[b-51gw4i78t1] {
    border: 1px solid var(--input);
    border-radius: calc(var(--radius) - 2px);
    padding: 0.6rem 0.75rem;
    font-size: 0.95rem;
    background: var(--card);
    color: var(--card-foreground);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    outline: none;
}

.auth-input:focus[b-51gw4i78t1] {
    border-color: var(--ring);
    box-shadow: 0 0 0 3px oklch(0.45 0.08 240 / 0.2);
}

.auth-button[b-51gw4i78t1] {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) - 2px);
    padding: 0.65rem 0.75rem;
    background: var(--primary);
    color: var(--primary-foreground);
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.15s ease;
}

.auth-button:hover[b-51gw4i78t1] {
    opacity: 0.9;
}

.auth-button:disabled[b-51gw4i78t1] {
    opacity: 0.7;
    cursor: not-allowed;
}

.auth-error[b-51gw4i78t1] {
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) - 2px);
    padding: 0.75rem;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.auth-footer[b-51gw4i78t1] {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.auth-footer a[b-51gw4i78t1] {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover[b-51gw4i78t1] {
    text-decoration: underline;
}
/* _content/WebApi/Components/Pages/Register.razor.rz.scp.css */
.auth-title[b-5eyk0ty5u8] {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.auth-subtitle[b-5eyk0ty5u8] {
    color: var(--muted-foreground);
    margin-bottom: 1.25rem;
}

.auth-card[b-5eyk0ty5u8] {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.auth-field[b-5eyk0ty5u8] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.auth-field label[b-5eyk0ty5u8] {
    font-size: 0.875rem;
    font-weight: 600;
}

.auth-input[b-5eyk0ty5u8] {
    border: 1px solid var(--input);
    border-radius: calc(var(--radius) - 2px);
    padding: 0.6rem 0.75rem;
    font-size: 0.95rem;
    background: var(--card);
    color: var(--card-foreground);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    outline: none;
}

.auth-input:focus[b-5eyk0ty5u8] {
    border-color: var(--ring);
    box-shadow: 0 0 0 3px oklch(0.45 0.08 240 / 0.2);
}

.auth-button[b-5eyk0ty5u8] {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) - 2px);
    padding: 0.65rem 0.75rem;
    background: var(--primary);
    color: var(--primary-foreground);
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.15s ease;
}

.auth-button:hover[b-5eyk0ty5u8] {
    opacity: 0.9;
}

.auth-button:disabled[b-5eyk0ty5u8] {
    opacity: 0.7;
    cursor: not-allowed;
}

.auth-error[b-5eyk0ty5u8] {
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) - 2px);
    padding: 0.75rem;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.auth-footer[b-5eyk0ty5u8] {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.auth-footer a[b-5eyk0ty5u8] {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover[b-5eyk0ty5u8] {
    text-decoration: underline;
}
