/* /Components/Layout/AuthLayout.razor.rz.scp.css */
.auth-container[b-xmnmgwtgau] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        var(--craftivo-login-bg, #0a1520) 0%,
        var(--craftivo-login-bg-mid, #1a2a36) 50%,
        var(--craftivo-login-bg, #0d1b2a) 100%
    );
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.auth-container[b-xmnmgwtgau]::before,
.auth-container[b-xmnmgwtgau]::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    z-index: 0;
    filter: blur(80px);
    opacity: 0.5;
}

.auth-container[b-xmnmgwtgau]::before {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--craftivo-accent, #d89344) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.auth-container[b-xmnmgwtgau]::after {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(69, 90, 100, 0.6) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
[b-rkb9kdofle] .craftivo-logo {
    background: linear-gradient(135deg, #667eea, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 0.5px;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-amohin5q1j],
.components-reconnect-repeated-attempt-visible[b-amohin5q1j],
.components-reconnect-failed-visible[b-amohin5q1j],
.components-pause-visible[b-amohin5q1j],
.components-resume-failed-visible[b-amohin5q1j],
.components-rejoining-animation[b-amohin5q1j] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-amohin5q1j],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-amohin5q1j],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-amohin5q1j],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-amohin5q1j],
#components-reconnect-modal.components-reconnect-retrying[b-amohin5q1j],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-amohin5q1j],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-amohin5q1j],
#components-reconnect-modal.components-reconnect-failed[b-amohin5q1j],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-amohin5q1j] {
    display: block;
}


#components-reconnect-modal[b-amohin5q1j] {
    background-color: white;
    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-amohin5q1j 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-amohin5q1j 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-amohin5q1j 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-amohin5q1j]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-amohin5q1j 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-amohin5q1j {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-amohin5q1j {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-amohin5q1j {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-amohin5q1j] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-amohin5q1j] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-amohin5q1j] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-amohin5q1j] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-amohin5q1j] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-amohin5q1j] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-amohin5q1j] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-amohin5q1j 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-amohin5q1j] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-amohin5q1j {
    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;
    }
}
/* /Components/Pages/Auth/Login.razor.rz.scp.css */
[b-127t01ot25] .login-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
    margin: 20px;
}

[b-127t01ot25] .login-header {
    text-align: center;
    margin-bottom: 32px;
}

/* Título del negocio — <h1> nativo, no MudText, para evitar el override de app.css */
[b-127t01ot25] .login-titulo {
    color: var(--craftivo-accent, #d89344);
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 1.8rem;
    margin: 0 0 6px 0;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

[b-127t01ot25] .login-subtitulo {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin: 0;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

[b-127t01ot25] .login-field {
    margin-bottom: 20px;
}

[b-127t01ot25] .login-field label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

[b-127t01ot25] .login-field input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

[b-127t01ot25] .login-field input:focus {
    border-color: var(--craftivo-accent, #d89344);
    box-shadow: 0 0 0 2px var(--craftivo-accent-shadow, rgba(216, 147, 68, 0.3));
    background: rgba(255, 255, 255, 0.08);
}

[b-127t01ot25] .login-field input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

[b-127t01ot25] .login-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

[b-127t01ot25] .login-remember input[type="checkbox"] {
    accent-color: var(--craftivo-accent, #d89344);
    width: 18px;
    height: 18px;
    cursor: pointer;
}

[b-127t01ot25] .login-remember label {
    cursor: pointer;
}

[b-127t01ot25] .login-submit {
    width: 100%;
    padding: 14px;
    background: var(--craftivo-accent, #d89344);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--craftivo-accent-shadow, rgba(216, 147, 68, 0.4));
    font-family: inherit;
}

[b-127t01ot25] .login-submit:hover {
    box-shadow: 0 6px 20px var(--craftivo-accent-shadow-lg, rgba(216, 147, 68, 0.6));
    transform: translateY(-1px);
    filter: brightness(1.1);
}

[b-127t01ot25] .login-submit:active {
    transform: translateY(0);
}

[b-127t01ot25] .login-footer {
    text-align: center;
    margin-top: 24px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
}
