/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-zo5pkzekjw] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f5f7fa;
}


main[b-zo5pkzekjw] {
    flex: 1;
    min-width: 0;
    background-color: #f5f7fa;
}


.sidebar[b-zo5pkzekjw] {
    background-color: #f3f5f8;
    flex-shrink: 0;
}


.content[b-zo5pkzekjw] {
    padding: 0;
    min-height: 100vh;
}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 641px) {

    .page[b-zo5pkzekjw] {
        flex-direction: row;
    }


    .sidebar[b-zo5pkzekjw] {
        width: 240px;
        min-width: 240px;
        height: 100vh;
        position: sticky;
        top: 0;
        flex-shrink: 0;
        box-shadow: 2px 0 12px rgba(0,0,0,.08);
        z-index: 10;
    }


    main[b-zo5pkzekjw] {
        flex: 1;
        min-width: 0;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

    .sidebar[b-zo5pkzekjw] {
        width: 100%;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
/* =========================================================
   CABEÇALHO
========================================================= */

.top-row[b-7yw1xibdxt] {
    height: 64px;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 24px;
    background: linear-gradient( 90deg, #0b2f5c 0%, #174d91 100% );
    border-bottom: 1px solid rgba(255,255,255,.10);
}


    /* =========================================================
   NOME INTERACARE
========================================================= */

    /*
   ::deep é importante porque NavLink gera um elemento <a>
   e estamos usando CSS isolado do Blazor.
*/

    .top-row[b-7yw1xibdxt]  .navbar-brand {
        color: #ffffff !important;
        font-size: 20px;
        font-weight: 700;
        text-decoration: none !important;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
        opacity: 1 !important;
    }


        .top-row[b-7yw1xibdxt]  .navbar-brand:hover {
            color: #ffffff !important;
            text-decoration: none !important;
        }


        .top-row[b-7yw1xibdxt]  .navbar-brand.active {
            color: #ffffff !important;
            background: transparent !important;
            box-shadow: none !important;
        }


/* =========================================================
   BOTÃO MOBILE
========================================================= */

.navbar-toggler[b-7yw1xibdxt] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    color: white;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 8px;
    background-color: rgba(255,255,255,.10);
}


/* =========================================================
   FUNDO DO MENU
========================================================= */

.nav-scrollable[b-7yw1xibdxt] {
    height: calc(100vh - 64px);
    overflow-y: auto;
    padding-top: 14px;
    background-color: #f3f5f8;
}


/* =========================================================
   ITENS
========================================================= */

.nav-item[b-7yw1xibdxt] {
    padding: 4px 12px;
}


    .nav-item:first-of-type[b-7yw1xibdxt] {
        margin-top: 4px;
    }


    /* =========================================================
   LINKS
========================================================= */

    .nav-item[b-7yw1xibdxt]  .nav-link {
        display: flex;
        align-items: center;
        gap: 14px;
        min-height: 52px;
        padding: 0 16px;
        border-radius: 10px;
        color: #27364a !important;
        background-color: transparent;
        text-decoration: none !important;
        font-size: 16px;
        font-weight: 500;
        border: none;
        box-shadow: none;
        transition: background-color .20s ease, color .20s ease, transform .15s ease;
    }


/* =========================================================
   ÍCONES
========================================================= */

.menu-icon[b-7yw1xibdxt] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    min-width: 24px;
    font-size: 21px;
    color: #175a9e;
    transition: color .20s ease;
}


/* =========================================================
   HOVER
========================================================= */

.nav-item[b-7yw1xibdxt]  .nav-link:hover {
    background-color: #e6ebf1;
    color: #0f3d74 !important;
    transform: translateX(3px);
    text-decoration: none !important;
    box-shadow: none;
}


    .nav-item[b-7yw1xibdxt]  .nav-link:hover .menu-icon {
        color: #0f3d74;
    }


/* =========================================================
   ITEM ATIVO

   NÃO terá caixa azul nem faixa azul lateral.
   Apenas texto um pouco mais forte.
========================================================= */

.nav-item[b-7yw1xibdxt]  .nav-link.active {
    background-color: transparent !important;
    color: #27364a !important;
    font-weight: 600;
    border: none !important;
    box-shadow: none !important;
}


    .nav-item[b-7yw1xibdxt]  .nav-link.active .menu-icon {
        color: #175a9e;
    }


    /* Quando passar mouse no item ativo,
   o hover continua funcionando normalmente */

    .nav-item[b-7yw1xibdxt]  .nav-link.active:hover {
        background-color: #e6ebf1 !important;
        color: #0f3d74 !important;
        box-shadow: none !important;
    }


/* =========================================================
   SCROLLBAR
========================================================= */

.nav-scrollable[b-7yw1xibdxt]::-webkit-scrollbar {
    width: 7px;
}


.nav-scrollable[b-7yw1xibdxt]::-webkit-scrollbar-track {
    background: transparent;
}


.nav-scrollable[b-7yw1xibdxt]::-webkit-scrollbar-thumb {
    background-color: #c3ccd7;
    border-radius: 20px;
}


    .nav-scrollable[b-7yw1xibdxt]::-webkit-scrollbar-thumb:hover {
        background-color: #9daabd;
    }


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 641px) {

    .navbar-toggler[b-7yw1xibdxt] {
        display: none;
    }


    .collapse[b-7yw1xibdxt] {
        display: block;
    }


    .nav-scrollable[b-7yw1xibdxt] {
        height: calc(100vh - 64px);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

    .collapse[b-7yw1xibdxt] {
        display: none;
    }


    .nav-scrollable[b-7yw1xibdxt] {
        height: auto;
        max-height: calc(100vh - 64px);
    }
}
/* /Pages/Home.razor.rz.scp.css */
.admin-page[b-o2kautzk4h] {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 30px 35px 45px;
}


/* ===========================================
   BOAS VINDAS
=========================================== */

.welcome-card[b-o2kautzk4h] {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    display: flex;
    align-items: center;
    padding: 45px 50px;
    border-radius: 22px;
    background: radial-gradient( circle at 85% 25%, rgba(59,130,246,.25), transparent 30% ), linear-gradient( 135deg, #0d1d36 0%, #172e62 60%, #174aa6 100% );
    color: white;
    box-shadow: 0 18px 40px rgba(0,0,0,.14);
    animation: cardAppear-b-o2kautzk4h .6s ease-out;
}


.welcome-content[b-o2kautzk4h] {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 28px;
    max-width: 880px;
}


.admin-icon[b-o2kautzk4h] {
    flex-shrink: 0;
    width: 105px;
    height: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 55px;
    border-radius: 24px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 15px 35px rgba(0,0,0,.15);
}


.welcome-label[b-o2kautzk4h] {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #70b7ff;
    margin-bottom: 8px;
}


.welcome-card h1[b-o2kautzk4h] {
    margin: 0 0 12px 0;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -1px;
}


.welcome-card p[b-o2kautzk4h] {
    margin: 0;
    max-width: 760px;
    color: #d2dbea;
    font-size: 16px;
    line-height: 1.7;
}


.welcome-info[b-o2kautzk4h] {
    display: flex;
    gap: 22px;
    margin-top: 22px;
    font-size: 13px;
    font-weight: 500;
    color: #e4ecf8;
}


.system-online[b-o2kautzk4h] {
    color: #67e8a5;
}


.welcome-decoration[b-o2kautzk4h] {
    position: absolute;
    right: 45px;
    top: 50%;
    transform: translateY(-50%) rotate(-10deg);
    font-size: 160px;
    opacity: .08;
    user-select: none;
}


/* ===========================================
   TÍTULO
=========================================== */

.section-title[b-o2kautzk4h] {
    margin-top: 40px;
    margin-bottom: 22px;
}


    .section-title h2[b-o2kautzk4h] {
        margin: 0;
        color: #111827;
        font-size: 24px;
        font-weight: 700;
    }


    .section-title p[b-o2kautzk4h] {
        margin: 6px 0 0;
        color: #6b7280;
        font-size: 14px;
    }


/* ===========================================
   GRID
=========================================== */

.dashboard-grid[b-o2kautzk4h] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}


/* ===========================================
   CARD
=========================================== */

.dashboard-card[b-o2kautzk4h] {
    display: flex;
    gap: 18px;
    min-height: 180px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e4e8ef;
    border-radius: 16px;
    text-decoration: none !important;
    color: inherit;
    box-shadow: 0 5px 18px rgba(15,23,42,.05);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    cursor: pointer;
}


    .dashboard-card:hover[b-o2kautzk4h] {
        transform: translateY(-5px);
        border-color: #9ec5f1;
        box-shadow: 0 15px 35px rgba(15,23,42,.10);
    }


/* ===========================================
   ÍCONE
=========================================== */

.card-icon[b-o2kautzk4h] {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: #eef5fc;
    color: #1458a4;
    font-size: 27px;
    transition: transform .2s ease, background .2s ease;
}


.dashboard-card:hover .card-icon[b-o2kautzk4h] {
    transform: scale(1.08);
    background: #dcecff;
}


/* ===========================================
   CONTEÚDO CARD
=========================================== */

.card-content[b-o2kautzk4h] {
    display: flex;
    flex-direction: column;
    flex: 1;
}


    .card-content h3[b-o2kautzk4h] {
        margin: 3px 0 7px;
        font-size: 18px;
        font-weight: 700;
        color: #111827;
    }


    .card-content p[b-o2kautzk4h] {
        margin: 0;
        flex: 1;
        color: #667085;
        font-size: 14px;
        line-height: 1.55;
    }


.card-link[b-o2kautzk4h] {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 17px;
    color: #1461c9;
    font-size: 13px;
    font-weight: 600;
}


    .card-link span[b-o2kautzk4h] {
        transition: transform .2s ease;
    }


.dashboard-card:hover .card-link span[b-o2kautzk4h] {
    transform: translateX(5px);
}


/* ===========================================
   ANIMAÇÕES
=========================================== */

@keyframes cardAppear-b-o2kautzk4h {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ===========================================
   MOBILE
=========================================== */

@media (max-width: 700px) {

    .admin-page[b-o2kautzk4h] {
        padding: 18px;
    }


    .welcome-card[b-o2kautzk4h] {
        padding: 30px 24px;
        min-height: auto;
    }


    .welcome-content[b-o2kautzk4h] {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }


    .admin-icon[b-o2kautzk4h] {
        width: 75px;
        height: 75px;
        font-size: 40px;
    }


    .welcome-card h1[b-o2kautzk4h] {
        font-size: 28px;
    }


    .welcome-info[b-o2kautzk4h] {
        flex-direction: column;
        gap: 7px;
    }


    .welcome-decoration[b-o2kautzk4h] {
        display: none;
    }


    .dashboard-grid[b-o2kautzk4h] {
        grid-template-columns: 1fr;
    }
}
/* /Pages/Interacoes.razor.rz.scp.css */
/* CSS for Interacoes component */
.interacoes-page[b-qyudyxo600] {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
    padding: 30px 35px 50px;
}


/* =========================================================
   CABEÇALHO
========================================================= */

.page-header[b-qyudyxo600] {
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 180px;
    padding: 35px 42px;
    border-radius: 20px;
    color: white;
    background: radial-gradient( circle at 88% 20%, rgba(59,130,246,.30), transparent 32% ), linear-gradient( 135deg, #0d1d36 0%, #172e62 60%, #174aa6 100% );
    box-shadow: 0 16px 38px rgba(15,23,42,.13);
}


.header-icon[b-qyudyxo600] {
    flex-shrink: 0;
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 37px;
    color: #a8d1ff;
    background: rgba(255,255,255,.11);
    border: 1px solid rgba(255,255,255,.17);
}


.header-label[b-qyudyxo600] {
    margin-bottom: 7px;
    color: #79baff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}


.page-header h1[b-qyudyxo600] {
    margin: 0 0 9px;
    font-size: 31px;
    font-weight: 700;
}


.page-header p[b-qyudyxo600] {
    margin: 0;
    color: #d5deeb;
    font-size: 14px;
}


/* =========================================================
   FORM CARD
========================================================= */

.form-card[b-qyudyxo600] {
    margin-top: 28px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e4e8ef;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(15,23,42,.055);
}


.form-title[b-qyudyxo600] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 27px;
}


    .form-title h2[b-qyudyxo600] {
        margin: 0;
        color: #111827;
        font-size: 21px;
        font-weight: 700;
    }


    .form-title p[b-qyudyxo600] {
        margin: 5px 0 0;
        color: #6b7280;
        font-size: 13px;
    }


.form-title-icon[b-qyudyxo600] {
    color: #c3d8ef;
    font-size: 33px;
}


/* =========================================================
   CAMPOS
========================================================= */

.medicamentos-grid[b-qyudyxo600] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}


.form-group[b-qyudyxo600] {
    margin-bottom: 21px;
}


    .form-group label[b-qyudyxo600] {
        display: block;
        margin-bottom: 8px;
        color: #374151;
        font-size: 14px;
        font-weight: 600;
    }


.required[b-qyudyxo600] {
    color: #dc2626;
}


.optional[b-qyudyxo600] {
    margin-left: 4px;
    color: #9ca3af;
    font-size: 11px;
    font-weight: 400;
}


.input-container[b-qyudyxo600] {
    position: relative;
}


.input-icon[b-qyudyxo600] {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #6d7c90;
    font-size: 19px;
    pointer-events: none;
}


.form-control[b-qyudyxo600] {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid #d8dee7;
    border-radius: 11px;
    background: #fff;
    color: #1f2937;
    outline: none;
    font-size: 14px;
    transition: border-color .2s ease, box-shadow .2s ease;
}


.input-container .form-control[b-qyudyxo600] {
    padding-left: 48px;
}


.form-control:focus[b-qyudyxo600] {
    border-color: #4b8bd1;
    box-shadow: 0 0 0 3px rgba(29,91,166,.10);
}


.description-input[b-qyudyxo600] {
    height: 125px;
    padding: 14px 16px;
    resize: vertical;
    line-height: 1.55;
}


/* =========================================================
   AÇÕES
========================================================= */

.form-actions[b-qyudyxo600] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 7px;
}


.btn-consultar[b-qyudyxo600],
.btn-inserir[b-qyudyxo600],
.btn-update[b-qyudyxo600],
.btn-delete[b-qyudyxo600] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 22px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}


.btn-consultar[b-qyudyxo600] {
    color: #fff;
    background: linear-gradient( 90deg, #124987, #1761b5 );
    box-shadow: 0 6px 14px rgba(23,97,181,.18);
}


.btn-inserir[b-qyudyxo600] {
    color: white;
    background: linear-gradient( 90deg, #15803d, #16a34a );
}


button:disabled[b-qyudyxo600] {
    opacity: .45;
    cursor: not-allowed;
    box-shadow: none;
}


button:hover:not(:disabled)[b-qyudyxo600] {
    transform: translateY(-1px);
}


/* =========================================================
   MENSAGENS
========================================================= */

.message-box[b-qyudyxo600] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    padding: 14px 17px;
    border-radius: 11px;
    font-size: 14px;
}


    .message-box.success[b-qyudyxo600] {
        color: #166534;
        background: #f0fdf4;
        border: 1px solid #bbf7d0;
    }


    .message-box.error[b-qyudyxo600] {
        color: #991b1b;
        background: #fef2f2;
        border: 1px solid #fecaca;
    }


    .message-box i[b-qyudyxo600] {
        font-size: 18px;
    }


/* =========================================================
   CABEÇALHO RESULTADOS
========================================================= */

.results-header[b-qyudyxo600] {
    margin: 37px 0 19px;
}


    .results-header h2[b-qyudyxo600] {
        margin: 0;
        color: #111827;
        font-size: 22px;
        font-weight: 700;
    }


    .results-header p[b-qyudyxo600] {
        margin: 5px 0 0;
        color: #6b7280;
        font-size: 13px;
    }


/* =========================================================
   LISTA DE RESULTADOS
========================================================= */

.results-list[b-qyudyxo600] {
    display: flex;
    flex-direction: column;
    gap: 18px;
}


/* =========================================================
   CARD INTERAÇÃO
========================================================= */

.interaction-card[b-qyudyxo600] {
    padding: 25px;
    background: white;
    border: 1px solid #e2e7ee;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(15,23,42,.045);
    transition: border-color .2s ease, box-shadow .2s ease;
}


    .interaction-card:hover[b-qyudyxo600] {
        border-color: #bdd4ed;
        box-shadow: 0 10px 28px rgba(15,23,42,.075);
    }


.interaction-card-header[b-qyudyxo600] {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid #edf0f3;
}


.interaction-icon[b-qyudyxo600] {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 13px;
    color: #1458a4;
    background: #edf5ff;
    font-size: 24px;
}


.interaction-label[b-qyudyxo600] {
    margin-bottom: 3px;
    color: #6585a9;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}


.interaction-card h3[b-qyudyxo600] {
    margin: 0;
    color: #172033;
    font-size: 19px;
    font-weight: 700;
}


.between[b-qyudyxo600] {
    margin: 0 8px;
    color: #3b82f6;
}


/* =========================================================
   MEDICAMENTOS
========================================================= */

.medicine-info[b-qyudyxo600] {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 22px;
}


.medicine[b-qyudyxo600] {
    flex: 1;
    padding: 14px 16px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid #edf0f4;
}


.medicine-label[b-qyudyxo600] {
    display: block;
    margin-bottom: 4px;
    color: #8792a2;
    font-size: 11px;
}


.medicine strong[b-qyudyxo600] {
    color: #243247;
    font-size: 14px;
}


.medicine-separator[b-qyudyxo600] {
    color: #5180b8;
    font-size: 20px;
}


/* =========================================================
   DESCRIÇÃO RESULTADO
========================================================= */

.result-description[b-qyudyxo600] {
    margin-top: 21px;
}


    .result-description label[b-qyudyxo600] {
        display: block;
        margin-bottom: 8px;
        color: #374151;
        font-size: 13px;
        font-weight: 600;
    }


.result-textarea[b-qyudyxo600] {
    width: 100%;
    min-height: 105px;
    padding: 13px 15px;
    resize: vertical;
    color: #253247;
    background: #ffffff;
    border: 1px solid #d8dee7;
    border-radius: 10px;
    outline: none;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.55;
}


    .result-textarea:focus[b-qyudyxo600] {
        border-color: #4b8bd1;
        box-shadow: 0 0 0 3px rgba(29,91,166,.09);
    }


/* =========================================================
   BOTÕES DO RESULTADO
========================================================= */

.card-actions[b-qyudyxo600] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 18px;
}


.btn-update[b-qyudyxo600] {
    color: #fff;
    background: #1761b5;
}


.btn-delete[b-qyudyxo600] {
    color: #b91c1c;
    background: #fff;
    border: 1px solid #fecaca;
}


    .btn-delete:hover:not(:disabled)[b-qyudyxo600] {
        background: #fef2f2;
    }


/* =========================================================
   SEM RESULTADOS
========================================================= */

.empty-result[b-qyudyxo600] {
    margin-top: 18px;
    padding: 42px 25px;
    text-align: center;
    background: #ffffff;
    border: 1px dashed #cad3df;
    border-radius: 16px;
}


.empty-icon[b-qyudyxo600] {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #6989ad;
    background: #eef4fa;
    border-radius: 50%;
    font-size: 25px;
}


.empty-result h3[b-qyudyxo600] {
    margin: 0 0 7px;
    color: #1f2937;
    font-size: 17px;
}


.empty-result p[b-qyudyxo600] {
    max-width: 560px;
    margin: 0 auto;
    color: #7a8595;
    font-size: 13px;
    line-height: 1.55;
}


/* =========================================================
   SPINNER
========================================================= */

.spinner[b-qyudyxo600] {
    width: 17px;
    height: 17px;
    border: 2px solid rgba(255,255,255,.35);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-qyudyxo600 .7s linear infinite;
}


@keyframes spin-b-qyudyxo600 {
    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 750px) {

    .interacoes-page[b-qyudyxo600] {
        padding: 18px;
    }


    .page-header[b-qyudyxo600] {
        align-items: flex-start;
        padding: 28px 24px;
    }


    .header-icon[b-qyudyxo600] {
        width: 65px;
        height: 65px;
        font-size: 29px;
    }


    .page-header h1[b-qyudyxo600] {
        font-size: 25px;
    }


    .medicamentos-grid[b-qyudyxo600] {
        grid-template-columns: 1fr;
        gap: 0;
    }


    .form-card[b-qyudyxo600] {
        padding: 22px;
    }


    .form-actions[b-qyudyxo600] {
        flex-direction: column;
    }


    .btn-consultar[b-qyudyxo600],
    .btn-inserir[b-qyudyxo600] {
        width: 100%;
    }


    .medicine-info[b-qyudyxo600] {
        flex-direction: column;
        align-items: stretch;
    }


    .medicine-separator[b-qyudyxo600] {
        text-align: center;
        transform: rotate(90deg);
    }


    .card-actions[b-qyudyxo600] {
        flex-direction: column;
    }


    .btn-update[b-qyudyxo600],
    .btn-delete[b-qyudyxo600] {
        width: 100%;
    }
}
/* /Pages/Login.razor.rz.scp.css */
/* CSS for Login component */
.login-page[b-ag448yode0] {
    min-height: calc(100vh - 0px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px;
    background: #f5f7fa;
}


/* =========================================================
   CONTAINER
========================================================= */

.login-container[b-ag448yode0] {
    width: 100%;
    max-width: 1050px;
    min-height: 590px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    overflow: hidden;
    background: white;
    border-radius: 24px;
    border: 1px solid #e5e9ef;
    box-shadow: 0 25px 60px rgba(15,23,42,.12);
    animation: loginAppear-b-ag448yode0 .5s ease-out;
}


/* =========================================================
   APRESENTAÇÃO
========================================================= */

.login-presentation[b-ag448yode0] {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 60px;
    color: white;
    background: radial-gradient( circle at 75% 20%, rgba(59,130,246,.35), transparent 32% ), linear-gradient( 145deg, #0c1c35 0%, #15346c 55%, #1553b2 100% );
}


.presentation-content[b-ag448yode0] {
    position: relative;
    z-index: 2;
    max-width: 430px;
}


.presentation-icon[b-ag448yode0] {
    width: 82px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    border-radius: 20px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    font-size: 36px;
    color: #8dc7ff;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.15);
}


.presentation-label[b-ag448yode0] {
    margin-bottom: 8px;
    color: #6cb8ff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}


.login-presentation h1[b-ag448yode0] {
    margin: 0 0 18px;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.15;
}


.login-presentation p[b-ag448yode0] {
    margin: 0;
    color: #d3dfef;
    font-size: 16px;
    line-height: 1.7;
}


.security-info[b-ag448yode0] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 34px;
    color: #bcd1e9;
    font-size: 13px;
}


    .security-info i[b-ag448yode0] {
        color: #68e0a3;
        font-size: 18px;
    }


.presentation-decoration[b-ag448yode0] {
    position: absolute;
    right: -25px;
    bottom: -35px;
    font-size: 220px;
    opacity: .055;
    transform: rotate(-8deg);
}


/* =========================================================
   FORMULÁRIO
========================================================= */

.login-form-area[b-ag448yode0] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 55px 50px;
    background: #ffffff;
}


.login-form[b-ag448yode0] {
    width: 100%;
    max-width: 380px;
}


/* =========================================================
   CABEÇALHO FORM
========================================================= */

.form-header[b-ag448yode0] {
    margin-bottom: 35px;
}


.login-icon[b-ag448yode0] {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 14px;
    background: #edf5ff;
    color: #155ba8;
    font-size: 27px;
}


.form-header h2[b-ag448yode0] {
    margin: 0 0 7px;
    color: #111827;
    font-size: 29px;
    font-weight: 700;
}


.form-header p[b-ag448yode0] {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
}


/* =========================================================
   CAMPOS
========================================================= */

.form-group[b-ag448yode0] {
    margin-bottom: 21px;
}


    .form-group label[b-ag448yode0] {
        display: block;
        margin-bottom: 8px;
        color: #374151;
        font-size: 14px;
        font-weight: 600;
    }


.input-container[b-ag448yode0] {
    position: relative;
}


.input-icon[b-ag448yode0] {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #7b8798;
    font-size: 18px;
    pointer-events: none;
}


.form-control[b-ag448yode0] {
    width: 100%;
    height: 52px;
    padding: 0 48px;
    border: 1px solid #d8dee7;
    border-radius: 11px;
    outline: none;
    background: #ffffff;
    color: #1f2937;
    font-size: 15px;
    transition: border-color .2s ease, box-shadow .2s ease;
}


    .form-control[b-ag448yode0]::placeholder {
        color: #a2aab6;
    }


    .form-control:focus[b-ag448yode0] {
        border-color: #4b8bd1;
        box-shadow: 0 0 0 3px rgba(29,91,166,.11);
    }


    .form-control:disabled[b-ag448yode0] {
        background: #f5f6f8;
        cursor: not-allowed;
    }


/* =========================================================
   VISUALIZAR SENHA
========================================================= */

.show-password[b-ag448yode0] {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #6b7280;
    cursor: pointer;
    font-size: 18px;
}


    .show-password:hover[b-ag448yode0] {
        background: #edf2f7;
        color: #155ba8;
    }


/* =========================================================
   MENSAGEM DE ERRO
========================================================= */

.login-message[b-ag448yode0] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 3px 0 18px;
    padding: 12px 14px;
    border-radius: 9px;
    font-size: 13px;
}


    .login-message.error[b-ag448yode0] {
        color: #991b1b;
        background: #fef2f2;
        border: 1px solid #fecaca;
    }


    .login-message i[b-ag448yode0] {
        font-size: 17px;
    }


/* =========================================================
   BOTÃO
========================================================= */

.login-button[b-ag448yode0] {
    width: 100%;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    border-radius: 11px;
    background: linear-gradient( 90deg, #124987, #1761b5 );
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 7px 15px rgba(23,97,181,.20);
    transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
}


    .login-button:hover:not(:disabled)[b-ag448yode0] {
        transform: translateY(-1px);
        box-shadow: 0 10px 20px rgba(23,97,181,.25);
    }


    .login-button:active:not(:disabled)[b-ag448yode0] {
        transform: translateY(0);
    }


    .login-button:disabled[b-ag448yode0] {
        opacity: .7;
        cursor: not-allowed;
    }


/* =========================================================
   LOADING
========================================================= */

.spinner[b-ag448yode0] {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,.35);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin-b-ag448yode0 .7s linear infinite;
}


@keyframes spin-b-ag448yode0 {

    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   RODAPÉ
========================================================= */

.login-footer[b-ag448yode0] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-top: 22px;
    color: #8a94a3;
    font-size: 12px;
}


    .login-footer i[b-ag448yode0] {
        color: #4e9b72;
    }


/* =========================================================
   ANIMAÇÃO
========================================================= */

@keyframes loginAppear-b-ag448yode0 {

    from {
        opacity: 0;
        transform: translateY(15px);
    }


    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 850px) {

    .login-page[b-ag448yode0] {
        padding: 18px;
    }


    .login-container[b-ag448yode0] {
        grid-template-columns: 1fr;
        max-width: 520px;
    }


    .login-presentation[b-ag448yode0] {
        min-height: 280px;
        padding: 35px;
    }


        .login-presentation h1[b-ag448yode0] {
            font-size: 30px;
        }


    .presentation-icon[b-ag448yode0] {
        width: 65px;
        height: 65px;
        margin-bottom: 20px;
        font-size: 29px;
    }


    .presentation-decoration[b-ag448yode0] {
        font-size: 150px;
    }


    .login-form-area[b-ag448yode0] {
        padding: 40px 30px;
    }
}
