/* _content/AlmoxarifadoCeramica/Components/Layout/MainLayout.razor.rz.scp.css */
/* _content/AlmoxarifadoCeramica/Components/Pages/Auth.razor.rz.scp.css */
*[b-379w7s3wd4] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body[b-379w7s3wd4] {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container[b-379w7s3wd4] {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    overflow: hidden;
    width: 800px;
    max-width: 90%;
    position: relative;
}

.header[b-379w7s3wd4] {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    padding: 40px 30px;
    text-align: center;
    color: white;
}

.logo[b-379w7s3wd4] {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

    .logo svg[b-379w7s3wd4] {
        width: 45px;
        height: 45px;
    }

.company-name[b-379w7s3wd4] {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.company-subtitle[b-379w7s3wd4] {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 300;
}

.form-container[b-379w7s3wd4] {
    padding: 40px 30px;
}

.form-tabs[b-379w7s3wd4] {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.tab-button[b-379w7s3wd4] {
    flex: 1;
    padding: 15px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

    .tab-button.active[b-379w7s3wd4] {
        color: #e67e22;
        border-bottom-color: #e67e22;
    }

    .tab-button:hover[b-379w7s3wd4] {
        color: #e67e22;
        background: #f8f9fa;
    }

.form-content[b-379w7s3wd4] {
    display: none;
}

    .form-content.active[b-379w7s3wd4] {
        display: block;
        animation: fadeIn-b-379w7s3wd4 0.3s ease;
    }

@keyframes fadeIn-b-379w7s3wd4 {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group[b-379w7s3wd4] {
    margin-bottom: 25px;
}

.form-label[b-379w7s3wd4] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 45px; /* Posi��o alinhada com o texto, depois do �cone */
    color: #999;
    background-color: white; /* Fundo para "cortar" a borda ao subir */
    padding: 0 5px;
    margin: 0;
    transition: all 0.2s ease-out;
    pointer-events: none; /* Permite clicar atrav�s da label */
}

.form-input[b-379w7s3wd4] {
    width: 100%;
    /* Alterado para dar espa�o ao �cone � esquerda */
    padding: 15px 15px 15px 45px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

    .form-input:focus[b-379w7s3wd4] {
        outline: none;
        border-color: #e67e22;
        background: white;
        box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
    }

.form-button[b-379w7s3wd4] {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    /* ADICIONADO: para alinhar o spinner e o texto */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .form-button:hover[b-379w7s3wd4] {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(230, 126, 34, 0.4);
    }

    .form-button:active[b-379w7s3wd4] {
        transform: translateY(0);
    }

    /* Estilo do bot�o quando desabilitado/carregando */
    .form-button:disabled[b-379w7s3wd4] {
        opacity: 0.7;
        cursor: wait;
    }

/* Anima��o do Spinner (c�rculo girat�rio) */
.loading-spinner[b-379w7s3wd4] {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin-b-379w7s3wd4 1s ease-in-out infinite;
}

@keyframes spin-b-379w7s3wd4 {
    to {
        transform: rotate(360deg);
    }
}

.forgot-password[b-379w7s3wd4] {
    text-align: center;
    margin-top: 20px;
}

    .forgot-password a[b-379w7s3wd4] {
        color: #e67e22;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
    }

        .forgot-password a:hover[b-379w7s3wd4] {
            text-decoration: underline;
        }

/* ALERTA DE MENSAGEM */
.alert[b-379w7s3wd4] {
    display: none; /* Inicia escondido */
    align-items: center; /* Alinha o �cone e o texto verticalmente */
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    border-left: 5px solid; /* Borda lateral colorida */
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    gap: 12px; /* ADICIONADO: Espa�amento de 12px entre o �cone e o texto */
}

.alert-icon[b-379w7s3wd4] {
    display: flex;
    align-items: center;
}
/* Cor para o alerta de sucesso */
.alert.alert-success[b-379w7s3wd4] {
    background-color: #F0FFF4; /* Verde bem claro */
    border-color: #48BB78; /* Verde */
    color: #2F855A; /* Verde escuro */
}

/* Cor para o alerta de falha/erro */
.alert.alert-danger[b-379w7s3wd4] {
    background-color: #FFF5F5; /* Vermelho bem claro */
    border-color: #F56565; /* Vermelho */
    color: #C53030; /* Vermelho escuro */
}

@keyframes slideDown-b-379w7s3wd4 {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-row[b-379w7s3wd4] {
    display: flex;
    gap: 15px;
}

    .form-row .form-group[b-379w7s3wd4] {
        flex: 1;
    }

.password-strength[b-379w7s3wd4] {
    margin-top: 5px;
    font-size: 12px;
}

.strength-bar[b-379w7s3wd4] {
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    overflow: hidden;
    margin-top: 5px;
}

.strength-fill[b-379w7s3wd4] {
    height: 100%;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.strength-weak[b-379w7s3wd4] {
    background: #dc3545;
    width: 25%;
}

.strength-fair[b-379w7s3wd4] {
    background: #fd7e14;
    width: 50%;
}

.strength-good[b-379w7s3wd4] {
    background: #ffc107;
    width: 75%;
}

.strength-strong[b-379w7s3wd4] {
    background: #28a745;
    width: 100%;
}

/* Estilos para o grupo de input com �cone */
.input-group[b-379w7s3wd4] {
    position: relative;
}

.input-icon[b-379w7s3wd4] {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    pointer-events: none; /* Impede que o �cone seja clic�vel */
}

/* Anima��o do r�tulo flutuante */
.form-input:focus ~ .form-label[b-379w7s3wd4],
.form-input:not(:placeholder-shown) ~ .form-label[b-379w7s3wd4] {
    top: 0;
    font-size: 12px;
    color: #e67e22;
}

/* Muda a cor do �cone quando o campo est� focado */
.input-group:focus-within .input-icon[b-379w7s3wd4] {
    color: #e67e22;
}

/* Responsive Design Profissional */

/* Extra Large Desktop - 1920px+ */
@media (min-width: 1920px) {
    .login-container[b-379w7s3wd4] {
        width: 900px;
        max-width: 1000px;
    }
    
    .header[b-379w7s3wd4] {
        padding: 50px 40px;
    }
    
    .logo[b-379w7s3wd4] {
        width: 100px;
        height: 100px;
    }
    
    .logo svg[b-379w7s3wd4] {
        width: 55px;
        height: 55px;
    }
    
    .company-name[b-379w7s3wd4] {
        font-size: 28px;
    }
    
    .form-container[b-379w7s3wd4] {
        padding: 50px 40px;
    }
}

/* Large Desktop - 1440px to 1919px */
@media (min-width: 1440px) and (max-width: 1919px) {
    .login-container[b-379w7s3wd4] {
        width: 850px;
    }
    
    .header[b-379w7s3wd4] {
        padding: 45px 35px;
    }
    
    .form-container[b-379w7s3wd4] {
        padding: 45px 35px;
    }
}

/* Standard Desktop - 1200px to 1439px */
@media (min-width: 1200px) and (max-width: 1439px) {
    .login-container[b-379w7s3wd4] {
        width: 800px;
    }
}

/* Small Desktop/Large Tablet - 992px to 1199px */
@media (min-width: 992px) and (max-width: 1199px) {
    .login-container[b-379w7s3wd4] {
        width: 750px;
        max-width: 85%;
    }
    
    .header[b-379w7s3wd4] {
        padding: 35px 25px;
    }
    
    .form-container[b-379w7s3wd4] {
        padding: 35px 25px;
    }
    
    .logo[b-379w7s3wd4] {
        width: 70px;
        height: 70px;
    }
    
    .logo svg[b-379w7s3wd4] {
        width: 40px;
        height: 40px;
    }
    
    .company-name[b-379w7s3wd4] {
        font-size: 22px;
    }
}

/* Tablet - 768px to 991px */
@media (min-width: 768px) and (max-width: 991px) {
    .login-container[b-379w7s3wd4] {
        width: 90%;
        max-width: 600px;
        border-radius: 18px;
    }
    
    .header[b-379w7s3wd4] {
        padding: 30px 25px;
    }
    
    .form-container[b-379w7s3wd4] {
        padding: 30px 25px;
    }
    
    .logo[b-379w7s3wd4] {
        width: 65px;
        height: 65px;
    }
    
    .logo svg[b-379w7s3wd4] {
        width: 35px;
        height: 35px;
    }
    
    .company-name[b-379w7s3wd4] {
        font-size: 20px;
    }
    
    .company-subtitle[b-379w7s3wd4] {
        font-size: 13px;
    }
    
    .form-input[b-379w7s3wd4] {
        padding: 12px 12px 12px 40px;
        font-size: 15px;
    }
    
    .form-label[b-379w7s3wd4] {
        left: 40px;
    }
    
    .input-icon[b-379w7s3wd4] {
        left: 12px;
    }
    
    .form-button[b-379w7s3wd4] {
        padding: 12px;
        font-size: 15px;
    }
    
    .tab-button[b-379w7s3wd4] {
        padding: 12px;
        font-size: 13px;
    }
}

/* Large Mobile - 576px to 767px */
@media (min-width: 576px) and (max-width: 767px) {
    .login-container[b-379w7s3wd4] {
        width: 95%;
        max-width: 500px;
        border-radius: 16px;
        margin: 20px auto;
    }
    
    .header[b-379w7s3wd4] {
        padding: 25px 20px;
    }
    
    .form-container[b-379w7s3wd4] {
        padding: 25px 20px;
    }
    
    .logo[b-379w7s3wd4] {
        width: 60px;
        height: 60px;
    }
    
    .logo svg[b-379w7s3wd4] {
        width: 32px;
        height: 32px;
    }
    
    .company-name[b-379w7s3wd4] {
        font-size: 18px;
    }
    
    .company-subtitle[b-379w7s3wd4] {
        font-size: 12px;
    }
    
    .form-input[b-379w7s3wd4] {
        padding: 11px 11px 11px 38px;
        font-size: 14px;
    }
    
    .form-label[b-379w7s3wd4] {
        left: 38px;
        font-size: 13px;
    }
    
    .input-icon[b-379w7s3wd4] {
        left: 11px;
    }
    
    .form-button[b-379w7s3wd4] {
        padding: 11px;
        font-size: 14px;
    }
    
    .tab-button[b-379w7s3wd4] {
        padding: 10px;
        font-size: 12px;
    }
    
    .form-row[b-379w7s3wd4] {
        flex-direction: column;
        gap: 10px;
    }
    
    .form-row .form-group[b-379w7s3wd4] {
        margin-bottom: 20px;
    }
    
    .alert[b-379w7s3wd4] {
        padding: 10px 12px;
        font-size: 13px;
        gap: 10px;
    }
}

/* Standard Mobile - 375px to 575px */
@media (min-width: 375px) and (max-width: 575px) {
    body[b-379w7s3wd4] {
        padding: 10px;
    }
    
    .login-container[b-379w7s3wd4] {
        width: 100%;
        max-width: none;
        border-radius: 15px;
        margin: 0;
    }
    
    .header[b-379w7s3wd4] {
        padding: 20px 15px;
    }
    
    .form-container[b-379w7s3wd4] {
        padding: 20px 15px;
    }
    
    .logo[b-379w7s3wd4] {
        width: 55px;
        height: 55px;
    }
    
    .logo svg[b-379w7s3wd4] {
        width: 28px;
        height: 28px;
    }
    
    .company-name[b-379w7s3wd4] {
        font-size: 16px;
    }
    
    .company-subtitle[b-379w7s3wd4] {
        font-size: 11px;
    }
    
    .form-input[b-379w7s3wd4] {
        padding: 10px 10px 10px 35px;
        font-size: 14px;
        border-radius: 8px;
    }
    
    .form-label[b-379w7s3wd4] {
        left: 35px;
        font-size: 12px;
    }
    
    .input-icon[b-379w7s3wd4] {
        left: 10px;
    }
    
    .form-button[b-379w7s3wd4] {
        padding: 10px;
        font-size: 14px;
        border-radius: 8px;
    }
    
    .tab-button[b-379w7s3wd4] {
        padding: 8px;
        font-size: 11px;
    }
    
    .form-group[b-379w7s3wd4] {
        margin-bottom: 20px;
    }
    
    .form-row[b-379w7s3wd4] {
        flex-direction: column;
        gap: 0;
    }
    
    .alert[b-379w7s3wd4] {
        padding: 8px 10px;
        font-size: 12px;
        gap: 8px;
        border-radius: 6px;
    }
    
    .forgot-password a[b-379w7s3wd4] {
        font-size: 13px;
    }
}

/* Small Mobile - 320px to 374px */
@media (max-width: 374px) {
    body[b-379w7s3wd4] {
        padding: 5px;
    }
    
    .login-container[b-379w7s3wd4] {
        width: 100%;
        border-radius: 12px;
        min-height: calc(100vh - 10px);
    }
    
    .header[b-379w7s3wd4] {
        padding: 15px 10px;
    }
    
    .form-container[b-379w7s3wd4] {
        padding: 15px 10px;
    }
    
    .logo[b-379w7s3wd4] {
        width: 50px;
        height: 50px;
    }
    
    .logo svg[b-379w7s3wd4] {
        width: 25px;
        height: 25px;
    }
    
    .company-name[b-379w7s3wd4] {
        font-size: 14px;
    }
    
    .company-subtitle[b-379w7s3wd4] {
        font-size: 10px;
    }
    
    .form-input[b-379w7s3wd4] {
        padding: 9px 9px 9px 32px;
        font-size: 13px;
        border-radius: 6px;
    }
    
    .form-label[b-379w7s3wd4] {
        left: 32px;
        font-size: 11px;
    }
    
    .input-icon[b-379w7s3wd4] {
        left: 9px;
    }
    
    .form-button[b-379w7s3wd4] {
        padding: 9px;
        font-size: 13px;
        border-radius: 6px;
    }
    
    .tab-button[b-379w7s3wd4] {
        padding: 6px;
        font-size: 10px;
    }
    
    .form-group[b-379w7s3wd4] {
        margin-bottom: 18px;
    }
    
    .alert[b-379w7s3wd4] {
        padding: 6px 8px;
        font-size: 11px;
        gap: 6px;
        border-radius: 4px;
    }
    
    .forgot-password a[b-379w7s3wd4] {
        font-size: 12px;
    }
    
    .loading-spinner[b-379w7s3wd4] {
        width: 16px;
        height: 16px;
        border-width: 2px;
    }
}

/* Landscape Orientation for Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .login-container[b-379w7s3wd4] {
        margin: 10px auto;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .header[b-379w7s3wd4] {
        padding: 15px 20px;
    }
    
    .logo[b-379w7s3wd4] {
        width: 45px;
        height: 45px;
        margin-bottom: 10px;
    }
    
    .logo svg[b-379w7s3wd4] {
        width: 22px;
        height: 22px;
    }
    
    .company-name[b-379w7s3wd4] {
        font-size: 16px;
        margin-bottom: 2px;
    }
    
    .company-subtitle[b-379w7s3wd4] {
        font-size: 10px;
    }
    
    .form-container[b-379w7s3wd4] {
        padding: 20px;
    }
    
    .form-group[b-379w7s3wd4] {
        margin-bottom: 15px;
    }
}

/* Print Styles */
@media print {
    body[b-379w7s3wd4] {
        background: white;
    }
    
    .login-container[b-379w7s3wd4] {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .header[b-379w7s3wd4] {
        background: #f5f5f5 !important;
        color: black !important;
    }
    
    .form-button[b-379w7s3wd4] {
        background: #ddd !important;
        color: black !important;
    }
}
/* _content/AlmoxarifadoCeramica/Components/Pages/Home.razor.rz.scp.css */
html[b-7yp7z52pe3], body[b-7yp7z52pe3] {
    height: 100%;
    margin: 0; /* Adicionado para remover margens padrão do navegador */
    font-family: sans-serif; /* Adicionado para uma melhor aparência de fonte */
}

.main-content[b-7yp7z52pe3] {
    height: calc(100% - 0px); /* você pode ajustar isso caso tenha header/footer fixos */
    margin-left: 250px;
    padding: 20px;
    box-sizing: border-box;
    transition: margin-left 0.3s ease; /* Adicionado para uma transição suave ao abrir/fechar o menu */
}

.welcome-card[b-7yp7z52pe3] {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.welcome-title[b-7yp7z52pe3] {
    color: #e67e22;
    font-size: 24px;
    margin-bottom: 10px;
}

.welcome-text[b-7yp7z52pe3] {
    color: #666;
    font-size: 16px;
}

/* ==================================================== */
/* REGRAS PARA TELAS PEQUENAS (Bloco Único e Limpo)     */
/* ==================================================== */
/* Responsividade para quando o menu lateral some e o conteúdo principal ocupa a tela toda. */
@media (max-width: 768px) {
    .main-content[b-7yp7z52pe3] {
        margin-left: 0; /* Remove a margem esquerda para ocupar 100% da largura */
    }
}
/* _content/AlmoxarifadoCeramica/Components/Pages/NavMenu.razor.rz.scp.css */
*[b-qf4ci2ne8g] {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body[b-qf4ci2ne8g] {
            font-family: 'Arial', sans-serif;
            background: #f5f5f5;
            overflow-x: hidden;
        }

        /* Menu Hambúrguer - Sempre fixo no canto esquerdo */
        .hamburger[b-qf4ci2ne8g] {
            display: none;
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            z-index: 9999 !important;
            background: #e67e22;
            border: none;
            border-radius: 0 0 8px 0;
            padding: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
            margin: 0 !important;
            transform: none !important;
        }

        .hamburger:hover[b-qf4ci2ne8g] {
            background: #d35400;
            transform: scale(1.05);
        }

        .hamburger span[b-qf4ci2ne8g] {
            display: block;
            width: 25px;
            height: 3px;
            background: white;
            margin: 5px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1)[b-qf4ci2ne8g] {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .hamburger.active span:nth-child(2)[b-qf4ci2ne8g] {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3)[b-qf4ci2ne8g] {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        /* Overlay para fechar o menu */
        .overlay[b-qf4ci2ne8g] {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .overlay.active[b-qf4ci2ne8g] {
            display: block;
            opacity: 1;
        }

        /* Garante que o submenu sempre expanda totalmente */
        .submenu-container.expanded[b-qf4ci2ne8g] {
            max-height: none !important;
            overflow: visible !important;
            display: block !important;
        }

        /* Permite rolagem se o menu for muito grande */
        .sidebar .menu[b-qf4ci2ne8g] {
            max-height: 100vh;
            overflow-y: auto;
        }

        .sidebar[b-qf4ci2ne8g] {
            width: 280px;
            height: 100vh;
            background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
            position: fixed;
            left: 0;
            top: 0;
            box-shadow: 2px 0 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            z-index: 1000;
        }

        .logo-container[b-qf4ci2ne8g] {
            padding: 20px;
            text-align: center;
            background: rgba(255,255,255,0.1);
            border-bottom: 1px solid rgba(255,255,255,0.2);
            flex-shrink: 0;
        }

        .logo[b-qf4ci2ne8g] {
            width: 80px;
            height: 80px;
            background: white;
            border-radius: 50%;
            margin: 0 auto 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .logo img[b-qf4ci2ne8g] {
            width: 60px;
            height: 60px;
            object-fit: contain;
        }

        .company-name[b-qf4ci2ne8g] {
            color: white;
            font-size: 18px;
            font-weight: bold;
            margin-top: 10px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }

        .menu[b-qf4ci2ne8g] {
            padding: 20px 0;
            flex: 1;
            overflow-y: auto;
            overflow-x: hidden;
        }

        /* Customização da scrollbar */
        .menu[b-qf4ci2ne8g]::-webkit-scrollbar {
            width: 6px;
        }

        .menu[b-qf4ci2ne8g]::-webkit-scrollbar-track {
            background: rgba(255,255,255,0.1);
            border-radius: 3px;
        }

        .menu[b-qf4ci2ne8g]::-webkit-scrollbar-thumb {
            background: rgba(255,255,255,0.3);
            border-radius: 3px;
            transition: background 0.3s ease;
        }

        .menu[b-qf4ci2ne8g]::-webkit-scrollbar-thumb:hover {
            background: rgba(255,255,255,0.5);
        }

        /* Para Firefox */
        .menu[b-qf4ci2ne8g] {
            scrollbar-width: thin;
            scrollbar-color: rgba(255,255,255,0.3) rgba(255,255,255,0.1);
        }

        .menu-section[b-qf4ci2ne8g] {
            margin-bottom: 30px;
        }

        .menu-title[b-qf4ci2ne8g] {
            color: white;
            font-size: 14px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 0 20px 10px;
            border-bottom: 2px solid rgba(255,255,255,0.2);
            margin-bottom: 15px;
        }

        .menu-title.expandable[b-qf4ci2ne8g] {
            display: flex;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 12px 20px;
            margin-bottom: 0;
            border-bottom: none;
        }

        .menu-title.expandable:hover[b-qf4ci2ne8g] {
            background: rgba(255,255,255,0.1);
        }

        .expand-icon[b-qf4ci2ne8g] {
            width: 16px;
            height: 16px;
            margin-right: 10px;
            fill: white;
            transition: transform 0.3s ease;
        }

        .expand-icon.rotated[b-qf4ci2ne8g] {
            transform: rotate(-90deg);
        }

        .submenu-container[b-qf4ci2ne8g] {
            overflow: hidden;
            transition: max-height 0.3s ease;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .submenu-container.expanded[b-qf4ci2ne8g] {
            max-height: 600px;
        }

        .submenu-container:not(.expanded)[b-qf4ci2ne8g] {
            max-height: 0;
        }

        .menu-subsection[b-qf4ci2ne8g] {
            margin-bottom: 20px;
            padding-top: 15px;
        }

        .menu-subtitle[b-qf4ci2ne8g] {
            color: rgba(255,255,255,0.8);
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 0 20px 5px;
            margin-bottom: 10px;
            margin-left: 10px;
        }

        .menu-item[b-qf4ci2ne8g] {
            display: flex;
            align-items: center;
            padding: 12px 20px;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
            margin-left: 10px;
            cursor: pointer;
        }

        .menu-item:hover[b-qf4ci2ne8g] {
            background: rgba(255,255,255,0.1);
            border-left-color: white;
            transform: translateX(5px);
        }

        .menu-item.active[b-qf4ci2ne8g] {
            background: rgba(255,255,255,0.2);
            border-left-color: white;
        }

        .menu-icon[b-qf4ci2ne8g] {
            width: 20px;
            height: 20px;
            margin-right: 15px;
            fill: white;
        }

        .menu-text[b-qf4ci2ne8g] {
            font-size: 14px;
            font-weight: 500;
        }

        .submenu[b-qf4ci2ne8g] {
            margin-left: 20px;
            margin-top: 5px;
        }

        .submenu .menu-item[b-qf4ci2ne8g] {
            padding: 8px 20px;
            font-size: 13px;
            color: rgba(255,255,255,0.8);
        }

        .submenu .menu-item:hover[b-qf4ci2ne8g] {
            color: white;
        }

        /* Logout sempre no final */
        .logout-section[b-qf4ci2ne8g] {
            margin-top: auto;
            border-top: 1px solid rgba(255,255,255,0.2);
            padding-top: 20px;
        }

        /* Conteúdo principal */
        .main-content[b-qf4ci2ne8g] {
            margin-left: 280px;
            padding: 40px;
            min-height: 100vh;
            transition: margin-left 0.3s ease;
        }

        .content-card[b-qf4ci2ne8g] {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        h1[b-qf4ci2ne8g] {
            color: #d35400;
            margin-bottom: 20px;
        }

        p[b-qf4ci2ne8g] {
            color: #666;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        /* RESPONSIVIDADE */
        @media (max-width: 768px) {
            .hamburger[b-qf4ci2ne8g] {
                display: block !important;
                position: fixed !important;
                top: 0 !important;
                left: 0 !important;
                right: auto !important;
                bottom: auto !important;
                margin: 0 !important;
                transform: none !important;
                border-radius: 0 0 8px 0 !important;
                padding: 15px !important;
            }

            .sidebar[b-qf4ci2ne8g] {
                transform: translateX(-100%);
            }

            .sidebar.active[b-qf4ci2ne8g] {
                transform: translateX(0);
            }

            .main-content[b-qf4ci2ne8g] {
                margin-left: 0;
                padding: 70px 20px 40px;
            }

            .company-name[b-qf4ci2ne8g] {
                font-size: 16px;
            }

            .logo[b-qf4ci2ne8g] {
                width: 60px;
                height: 60px;
            }

            .logo img[b-qf4ci2ne8g] {
                width: 40px;
                height: 40px;
            }

            .menu-item[b-qf4ci2ne8g] {
                padding: 15px 20px;
            }

            .menu-text[b-qf4ci2ne8g] {
                font-size: 16px;
            }

            .menu-icon[b-qf4ci2ne8g] {
                width: 22px;
                height: 22px;
            }
        }

        @media (max-width: 480px) {
            .hamburger[b-qf4ci2ne8g] {
                display: block !important;
                position: fixed !important;
                top: 0 !important;
                left: 0 !important;
                right: auto !important;
                bottom: auto !important;
                margin: 0 !important;
                transform: none !important;
                border-radius: 0 0 8px 0 !important;
                padding: 12px !important;
            }

            .hamburger span[b-qf4ci2ne8g] {
                width: 20px;
                height: 2px;
            }

            .sidebar[b-qf4ci2ne8g] {
                width: 100%;
            }

            .main-content[b-qf4ci2ne8g] {
                padding: 60px 15px 20px;
            }

            .content-card[b-qf4ci2ne8g] {
                padding: 20px;
            }
        }

        /* Animações suaves */
        @media (prefers-reduced-motion: reduce) {
            *[b-qf4ci2ne8g] {
                transition: none !important;
                animation: none !important;
            }
        }
/* _content/AlmoxarifadoCeramica/Components/Pages/Validarsenha.razor.rz.scp.css */
*[b-n740xkco6e] {
    box-sizing: border-box;
}

html[b-n740xkco6e], body[b-n740xkco6e] {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
}

body[b-n740xkco6e] {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #e67e22 100%);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    position: relative;
}

body[b-n740xkco6e]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.container[b-n740xkco6e] {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.12),
        0 8px 32px rgba(230, 126, 34, 0.15);
    width: 100%;
    max-width: 480px;
    min-width: 320px;
    padding: 48px 40px;
    position: relative;
    z-index: 1;
}

.header[b-n740xkco6e] {
    text-align: center;
    margin-bottom: 40px;
}

.logo[b-n740xkco6e] {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #ff6b35, #e67e22);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 
        0 8px 32px rgba(230, 126, 34, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.logo[b-n740xkco6e]::before {
    content: "🏺";
    font-size: 28px;
    position: relative;
    z-index: 1;
}

.logo[b-n740xkco6e]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
}

.header h1[b-n740xkco6e] {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #e67e22, #d35400);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}

.header p[b-n740xkco6e] {
    font-size: 16px;
    color: #64748b;
    margin: 0;
    font-weight: 400;
}

.success-message[b-n740xkco6e] {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 16px 20px;
    border-radius: 16px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.25);
}

.success-message[b-n740xkco6e]::before {
    content: "✓";
    font-weight: 700;
    font-size: 16px;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.form-group[b-n740xkco6e] {
    margin-bottom: 24px;
}

.form-label[b-n740xkco6e] {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.form-input[b-n740xkco6e] {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    font-size: 16px;
    background: #ffffff;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 400;
    color: #111827;
}

.form-input[b-n740xkco6e]::placeholder {
    color: #9ca3af;
}

.form-input:focus[b-n740xkco6e] {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
    background: #ffffff;
}

.password-input-wrapper[b-n740xkco6e] {
    position: relative;
}

.toggle-password[b-n740xkco6e] {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #6b7280;
    font-size: 20px;
    transition: all 0.2s ease;
    padding: 4px;
    border-radius: 8px;
}

.toggle-password:hover[b-n740xkco6e] {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
}

.password-requirements[b-n740xkco6e] {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    margin-top: 12px;
}

.requirement[b-n740xkco6e] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 6px;
    font-weight: 500;
}

.requirement:last-child[b-n740xkco6e] {
    margin-bottom: 0;
}

.requirement.valid[b-n740xkco6e] {
    color: #10b981;
}

.requirement.invalid[b-n740xkco6e] {
    color: #ef4444;
}

.requirement[b-n740xkco6e]::before {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
}

.requirement.valid[b-n740xkco6e]::before {
    content: "✓";
    background: #10b981;
    border-color: #10b981;
    color: white;
}

.requirement.invalid[b-n740xkco6e]::before {
    content: "✗";
    background: #ef4444;
    border-color: #ef4444;
    color: white;
}

.helper-text[b-n740xkco6e] {
    font-size: 13px;
    color: #6b7280;
    margin-top: 8px;
    line-height: 1.5;
}

.submit-btn[b-n740xkco6e] {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #ff6b35, #e67e22);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

.submit-btn[b-n740xkco6e]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.submit-btn:hover[b-n740xkco6e] {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(230, 126, 34, 0.4);
}

.submit-btn:hover[b-n740xkco6e]::before {
    opacity: 1;
}

.submit-btn:active[b-n740xkco6e] {
    transform: translateY(0);
}

.back-link[b-n740xkco6e] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    color: #ff6b35;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    padding: 8px 12px;
    border-radius: 8px;
}

.back-link:hover[b-n740xkco6e] {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(-2px);
}

@media (max-width: 640px) {
    body[b-n740xkco6e] {
        padding: 16px;
    }
    
    .container[b-n740xkco6e] {
        padding: 32px 24px;
        border-radius: 20px;
    }
    
    .header h1[b-n740xkco6e] {
        font-size: 28px;
    }
    
    .logo[b-n740xkco6e] {
        width: 64px;
        height: 64px;
        border-radius: 16px;
    }
    
    .logo[b-n740xkco6e]::before {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .container[b-n740xkco6e] {
        padding: 24px 20px;
        margin: 0;
    }
    
    .header h1[b-n740xkco6e] {
        font-size: 24px;
    }
    
    .header p[b-n740xkco6e] {
        font-size: 15px;
    }
}
