/* NutreMais — Fornecedor. Tokens "Linho Claro" + complementos do boot/erro.
   O grosso do estilo vem do MudBlazor (tema em NutreMaisTheme.cs). */
:root {
    --bg: #f1ece3;
    --panel: #ffffff;
    --text: #261d12;
    --dim: #6e6253;
    --accent: #1f9a63;
    --danger: #c0392b;
}

html, body {
    margin: 0;
    font-family: 'Hanken Grotesk', sans-serif;
    background: var(--bg);
    color: var(--text);
}

.boot {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    gap: .25rem;
}
.boot-name { font-size: 1.6rem; font-weight: 800; color: var(--accent); }
.boot-sub { color: var(--dim); }

.mono { font-family: 'JetBrains Mono', monospace; }

.login-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 1rem;
    background: var(--bg);
}

/* Código do token de implantação em destaque */
.token-code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--accent);
    text-align: center;
    user-select: all;
}

#blazor-error-ui {
    background: #fdf0d8;
    bottom: 0;
    display: none;
    left: 0;
    padding: .8rem 1.2rem;
    position: fixed;
    width: 100%;
    box-shadow: 0 -1px 2px rgba(0,0,0,.1);
    z-index: 1000;
}
#blazor-error-ui .dismiss { cursor: pointer; position: absolute; right: 1rem; top: .8rem; }
