#firstboxlogin, #text-login, #logo_login { background-color: transparent;}html { height: 100%;}body { background-size: cover; background-repeat: no-repeat; background-position: center; background-image: url("/plugins/trademark/front/picture.send.php?path=e5/6937331edf0e5.png");}/* ===========================
   CARD ÚNICO DE LOGIN
   =========================== */

.page-anonymous .card.card-md {
    background: transparent;
    border: none;
    box-shadow: none;
}

.page-anonymous::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);  /* camada escura por cima do fundo */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: -1;                      /* fica atrás do card/conteúdo */
}

.page-anonymous .card.card-md .card-body {
    border-radius: 24px;
    padding: 32px 40px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
}

/* FORCE 2 COLUNAS LADO A LADO NO DESKTOP */
.page-anonymous .card.card-md .row.justify-content-center {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 2.5rem;
}

/* cada coluna com ~50% da largura */
.page-anonymous .card.card-md .col-md-5,
.page-anonymous .card.card-md .col-auto.px-2.text-center {
    flex: 0 0 50%;
    max-width: 50%;
}


/* ===========================
   BLOCO DE LOGIN LOCAL (ESQUERDA)
   =========================== */

.page-anonymous .card.card-md .col-md-5 {
    border-right: 1px solid rgba(255,255,255,0.12);
    padding-right: 32px;
}

/* Título “Faça login na sua conta” */
.page-anonymous .card.card-md .col-md-5 .card-header h2 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
}

/* Labels dos campos */
.page-anonymous .card.card-md .col-md-5 .form-label {
    font-weight: 500;
    color: #e4e4e4;
}

/* Inputs */
.page-anonymous .card.card-md .col-md-5 .form-control {
    background-color: rgba(0,0,0,0.4);
    border-radius: 999px;
    border: 1px solid rgba(152, 251, 152, 0.7);
    color: #ffffff;
}

.page-anonymous .card.card-md .col-md-5 .form-control::placeholder {
    color: rgba(255,255,255,0.55);
}

/* Select "Origem de login" (select2) */
.page-anonymous .card.card-md .col-md-5 .select2-selection--single {
    border-radius: 999px !important;
    border: 1px solid rgba(152, 251, 152, 0.7) !important;
    background-color: rgba(0,0,0,0.4) !important;
    color: #ffffff !important;
}

/* Checkbox “Lembrar de mim” */
.page-anonymous .card.card-md .col-md-5 .form-check-label {
    color: #e4e4e4;
}

/* Botão ENTRAR */
.page-anonymous .card.card-md .col-md-5 .form-footer .btn {
    border-radius: 999px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
}


/* ===========================
   BLOCO EXTERNAL PROVIDER (DIREITA, MESMO CARD)
   =========================== */

.page-anonymous .card.card-md .col-auto.px-2.text-center {
    padding-left: 0;                 /* tira o "empurrão" pra esquerda */
    display: flex;
    flex-direction: column;
    align-items: center;             /* centraliza tudo na coluna */
}

/* garante que o wrapper interno use a largura toda */
.page-anonymous .card.card-md .col-auto.px-2.text-center > div {
    width: 100%;
}

/* Esconde o texto original e injeta um novo */
.page-anonymous .card.card-md .col-auto.px-2.text-center .card-header h2 {
    font-size: 0;               /* esconde "Login with external provider" */
    position: relative;
}

/* Novo texto principal */
.page-anonymous .card.card-md .col-auto.px-2.text-center .card-header h2::before {
    content: "Acesse com seu E-mail";  /* <-- coloque o texto que quiser aqui */
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
}

/* centralizar o "cartão" da Microsoft sob o título */
.page-anonymous .card.card-md .col-auto.px-2.text-center .row.align-items-start {
    max-width: 260px !important;
    margin-top: 28px !important;
    margin-left: auto !important;
    margin-right: auto !important;   /* centra o row na coluna */
    justify-content: center !important;
}

/* coluna interna que envolve o botão */
.page-anonymous .card.card-md .col-auto.px-2.text-center .row.align-items-start .col-sm-6 {
    display: flex;
    justify-content: center;          /* garante que o botão fique no meio */
}


/* Botão EntraID (SAML) */
.page-anonymous .card.card-md .col-auto.px-2.text-center button[name="samlIdpId"] {
    width: 210px !important;
    margin-bottom: 20px !important;
    border-radius: 20px;
    border: none;
    padding: 12px 12px;
    box-shadow: 0 14px 38px rgba(0,0,0,0.55);
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

/* Conteúdo interno do botão */
.page-anonymous .card.card-md .col-auto.px-2.text-center button[name="samlIdpId"] > div {
    cursor: pointer;
    margin: 6px 0 2px 0 !important;
}

/* Ícone Microsoft */
.page-anonymous .card.card-md .col-auto.px-2.text-center button[name="samlIdpId"] .fa-microsoft {
    margin-bottom: 8px;
}

/* Texto "EntraID-W3" */
.page-anonymous .card.card-md .col-auto.px-2.text-center button[name="samlIdpId"] span b {
    font-size: 15px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

/* Hover do botão SSO */
.page-anonymous .card.card-md .col-auto.px-2.text-center button[name="samlIdpId"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 48px rgba(0,0,0,0.7);
    filter: brightness(1.05);
}


/* ===========================
   RESPONSIVO: EMPILHAR NO MOBILE
   =========================== */

@media (max-width: 991px) {
    .page-anonymous .card.card-md .row.justify-content-center {
        flex-direction: column !important;
        flex-wrap: nowrap;
    }

    .page-anonymous .card.card-md .col-md-5,
    .page-anonymous .card.card-md .col-auto.px-2.text-center {
        max-width: 100%;
        flex-basis: 100%;
    }

    .page-anonymous .card.card-md .col-md-5 {
        border-right: none;
        padding-right: 0;
        margin-bottom: 24px;
    }

    .page-anonymous .card.card-md .col-auto.px-2.text-center {
        padding-left: 0;
    }
}

/* Header da coluna de login externo */
.page-anonymous .card.card-md .col-auto.px-2.text-center .card-header {
    text-align: center;      /* centraliza tudo dentro do header */
    padding-left: 0;
    padding-right: 0;
}

/* Esconde o texto original e mostra o novo, centralizado */
.page-anonymous .card.card-md .col-auto.px-2.text-center .card-header h2 {
    font-size: 0;
    position: relative;
}

.page-anonymous .card.card-md .col-auto.px-2.text-center .card-header h2::before {
    content: "Acesse com seu E-mail";  /* aqui vai o texto que você quer */
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}

/* (opcional) subtítulo embaixo */
.page-anonymous .card.card-md .col-auto.px-2.text-center .card-header h2::after {
    content: "";
}

/* ===========================
   AJUSTE FINO COLUNA DIREITA (EXTERNAL PROVIDER)
   =========================== */

/* coluna da direita: centralizar tudo */
.page-anonymous .card.card-md .col-auto.px-2.text-center {
    padding-left: 0 !important;
    display: flex !important;
    flex-direction: column;
    align-items: center;        /* centraliza conteúdo na coluna */
    text-align: center;
}

/* wrapper interno que contém o header + row */
.page-anonymous .card.card-md .col-auto.px-2.text-center > div {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;        /* garante que o header e o botão fiquem no centro */
}

/* header: ocupa a largura toda e centraliza o h2 */
.page-anonymous .card.card-md .col-auto.px-2.text-center .card-header {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 1.5rem;
}

/* some o texto original e usa o novo, centralizado */
.page-anonymous .card.card-md .col-auto.px-2.text-center .card-header h2 {
    font-size: 0;
    position: relative;
}

.page-anonymous .card.card-md .col-auto.px-2.text-center .card-header h2::before {
    content: "Acesse com seu E-mail";
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
}









