/* /Components/Layout/AccountLayout.razor.rz.scp.css */
/* Paleta propia de esta pantalla (no toca el tema de MudBlazor del resto de
   la app -- login es la única vidriera sin sesión, se la trata aparte). */
.cuenta-escenario[b-cpqmt9c9fv] {
    --verde-950: #0e2820;
    --verde-800: #1c4536;
    --verde-600: #2f6b52;
    --verde-400: #6fa98c;
    --dorado-400: #d7a94e;
    --dorado-300: #e6c583;
    --crema-50: #faf7f1;
    --tinta-900: #1c231f;
    --tinta-500: #5c6660;
    --borde: #e3ded2;
    --error: #ab2b23;

    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    background: var(--crema-50);
}

/* ---------- Panel de marca ---------- */
.cuenta-marca[b-cpqmt9c9fv] {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: clamp(2.5rem, 5vw, 5rem);
    background:
        radial-gradient(120% 140% at 15% 10%, var(--verde-800) 0%, var(--verde-950) 55%, #081812 100%);
    color: var(--crema-50);
}

.cuenta-marca__capsulas[b-cpqmt9c9fv] {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.capsula[b-cpqmt9c9fv] {
    position: absolute;
    display: block;
    border-radius: 999px;
    opacity: 0.16;
    background: linear-gradient(135deg, var(--dorado-300), var(--verde-400));
}

.capsula--1[b-cpqmt9c9fv] { width: 220px; height: 92px; top: -30px; right: -50px; transform: rotate(24deg); opacity: 0.22; }
.capsula--2[b-cpqmt9c9fv] { width: 140px; height: 58px; top: 18%; right: 12%; transform: rotate(-18deg); background: linear-gradient(135deg, var(--verde-400), transparent); opacity: 0.14; }
.capsula--3[b-cpqmt9c9fv] { width: 320px; height: 130px; bottom: -60px; left: -80px; transform: rotate(-12deg); opacity: 0.15; }
.capsula--4[b-cpqmt9c9fv] { width: 90px; height: 38px; bottom: 22%; left: 8%; transform: rotate(30deg); background: var(--dorado-400); opacity: 0.18; }
.capsula--5[b-cpqmt9c9fv] { width: 160px; height: 66px; bottom: 8%; right: 18%; transform: rotate(8deg); opacity: 0.1; }

.cuenta-marca__contenido[b-cpqmt9c9fv] {
    position: relative;
    z-index: 1;
    max-width: 30rem;
}

/* Sello: dos barras superpuestas formando una cruz de puntas redondeadas --
   nada de ícono de stock, es la misma forma cápsula del fondo, sólo cruzada. */
.cuenta-marca__sello[b-cpqmt9c9fv] {
    position: relative;
    width: 2.75rem;
    height: 2.75rem;
    margin-bottom: 1.75rem;
}

.sello__barra[b-cpqmt9c9fv] {
    position: absolute;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--dorado-300), var(--dorado-400));
}

.sello__barra--v[b-cpqmt9c9fv] { left: 44%; width: 12%; height: 100%; }
.sello__barra--h[b-cpqmt9c9fv] { top: 44%; height: 12%; width: 100%; }

.cuenta-marca__wordmark[b-cpqmt9c9fv] {
    font-family: "Fraunces", Georgia, "Times New Roman", serif;
    font-optical-sizing: auto;
    font-weight: 560;
    font-size: clamp(2.5rem, 4vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin: 0 0 0.6rem;
}

.cuenta-marca__wordmark em[b-cpqmt9c9fv] {
    font-style: italic;
    font-weight: 480;
    color: var(--dorado-300);
}

.cuenta-marca__acronimo[b-cpqmt9c9fv] {
    font-size: 0.8125rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(250, 247, 241, 0.6);
    margin: 0 0 1.75rem;
}

.cuenta-marca__tagline[b-cpqmt9c9fv] {
    font-size: 1.0625rem;
    line-height: 1.55;
    color: rgba(250, 247, 241, 0.82);
    margin: 0 0 2.25rem;
    max-width: 26rem;
}

.cuenta-marca__lista[b-cpqmt9c9fv] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.85rem;
    font-size: 0.9375rem;
    color: rgba(250, 247, 241, 0.92);
}

.cuenta-marca__lista li[b-cpqmt9c9fv] {
    position: relative;
    padding-left: 1.5rem;
}

.cuenta-marca__lista li[b-cpqmt9c9fv]::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: var(--dorado-400);
}

/* ---------- Panel del formulario ---------- */
.cuenta-panel[b-cpqmt9c9fv] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--crema-50);
}

.cuenta-panel__contenido[b-cpqmt9c9fv] {
    width: 100%;
    max-width: 24rem;
    animation: aparecer-b-cpqmt9c9fv 0.5s ease-out;
}

@keyframes aparecer-b-cpqmt9c9fv {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .cuenta-panel__contenido[b-cpqmt9c9fv] { animation: none; }
}

/* ---------- Responsive: el panel de marca se vuelve una franja arriba ---------- */
@media (max-width: 900px) {
    .cuenta-escenario[b-cpqmt9c9fv] {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }

    .cuenta-marca[b-cpqmt9c9fv] {
        padding: 2.25rem 1.75rem;
        min-height: 0;
    }

    .cuenta-marca__acronimo[b-cpqmt9c9fv],
    .cuenta-marca__tagline[b-cpqmt9c9fv],
    .cuenta-marca__lista[b-cpqmt9c9fv] {
        display: none;
    }

    .cuenta-marca__sello[b-cpqmt9c9fv] {
        width: 2.1rem;
        height: 2.1rem;
        margin-bottom: 0.85rem;
    }

    .cuenta-marca__wordmark[b-cpqmt9c9fv] {
        font-size: 2rem;
    }

    /* Sin esto el panel del formulario se centra en TODO el alto restante
       del viewport (la fila "1fr" del grid) y deja un salto enorme antes de
       "Bienvenido de nuevo" -- en mobile el contenido arranca pegado al
       panel de marca, no centrado en la pantalla entera. */
    .cuenta-panel[b-cpqmt9c9fv] {
        align-items: flex-start;
        padding-top: 2.5rem;
    }
}

@media (max-width: 420px) {
    .cuenta-panel[b-cpqmt9c9fv] {
        padding: 1.5rem 1.25rem;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-uc1rir07mg] {
    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-uc1rir07mg] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-thignfeh4o],
.components-reconnect-repeated-attempt-visible[b-thignfeh4o],
.components-reconnect-failed-visible[b-thignfeh4o],
.components-pause-visible[b-thignfeh4o],
.components-resume-failed-visible[b-thignfeh4o],
.components-rejoining-animation[b-thignfeh4o] {
    display: none;
}

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


#components-reconnect-modal[b-thignfeh4o] {
    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-thignfeh4o 0.5s both;
    &[open]

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

#components-reconnect-modal button[b-thignfeh4o] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-thignfeh4o] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-thignfeh4o] {
        background-color: #6b9ed2;
    }

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

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

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

@keyframes components-rejoining-animation-b-thignfeh4o {
    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/Account/Login.razor.rz.scp.css */
.ingreso-encabezado[b-hdnbq1mspk] {
    margin-bottom: 2rem;
}

.ingreso-encabezado h2[b-hdnbq1mspk] {
    font-family: "Fraunces", Georgia, "Times New Roman", serif;
    font-optical-sizing: auto;
    font-weight: 560;
    font-size: 1.85rem;
    color: #1c231f;
    margin: 0 0 0.4rem;
}

.ingreso-encabezado p[b-hdnbq1mspk] {
    font-size: 0.9375rem;
    color: #5c6660;
    margin: 0;
}

/* EditForm/InputText son componentes -- lo que rendericen adentro no recibe
   el atributo de scope de este archivo salvo que lo pidamos con ::deep. */
[b-hdnbq1mspk] .ingreso-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ingreso-error[b-hdnbq1mspk] {
    background: #fbeae8;
    border: 1px solid #e6b4ac;
    color: #ab2b23;
    font-size: 0.875rem;
    line-height: 1.4;
    padding: 0.75rem 0.9rem;
    border-radius: 10px;
}

.campo[b-hdnbq1mspk] {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.campo label[b-hdnbq1mspk] {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #1c231f;
    letter-spacing: 0.01em;
}

.campo[b-hdnbq1mspk]  input {
    font: inherit;
    font-size: 0.9375rem;
    padding: 0.75rem 0.9rem;
    border: 1.5px solid #e3ded2;
    border-radius: 10px;
    background: #fff;
    color: #1c231f;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.campo[b-hdnbq1mspk]  input::placeholder {
    color: #a8a196;
}

.campo[b-hdnbq1mspk]  input:focus {
    outline: none;
    border-color: #2f6b52;
    box-shadow: 0 0 0 3px rgba(47, 107, 82, 0.15);
}

.campo[b-hdnbq1mspk]  input.invalid {
    border-color: #ab2b23;
}

.campo[b-hdnbq1mspk]  .validation-message {
    font-size: 0.8125rem;
    color: #ab2b23;
    margin: 0;
}

.ingreso-boton[b-hdnbq1mspk] {
    font: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #faf7f1;
    background: linear-gradient(135deg, #2f6b52, #1c4536);
    border: none;
    border-radius: 10px;
    padding: 0.85rem 1rem;
    margin-top: 0.25rem;
    cursor: pointer;
    transition: transform 0.12s ease, box-shadow 0.15s ease, opacity 0.15s ease;
    box-shadow: 0 6px 16px rgba(28, 69, 54, 0.28);
}

.ingreso-boton:hover:not(:disabled)[b-hdnbq1mspk] {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(28, 69, 54, 0.32);
}

.ingreso-boton:active:not(:disabled)[b-hdnbq1mspk] {
    transform: translateY(0);
}

.ingreso-boton:disabled[b-hdnbq1mspk] {
    opacity: 0.65;
    cursor: default;
    box-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
    .ingreso-boton[b-hdnbq1mspk] {
        transition: none;
    }
}
