@import url('https://fonts.googleapis.com/css2?family=Belanosima:wght@400;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* ── Login Bdente ─────────────────────────────────────────────── */

body.task-login,
html.dark-mode body.task-login {
    position: relative;
    isolation: isolate;
    background-color: #1a080a;
    font-family: Inter, Roboto, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Malha animada — vinho Bdente (blobs quentes + grade + nós) */
body.task-login::before {
    content: "";
    position: fixed;
    inset: -22%;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 52% 44% at 14% 16%, rgba(185, 28, 28, 0.52), transparent 56%),
        radial-gradient(ellipse 46% 38% at 86% 14%, rgba(252, 211, 77, 0.22), transparent 50%),
        radial-gradient(ellipse 44% 48% at 74% 86%, rgba(127, 29, 29, 0.45), transparent 54%),
        radial-gradient(ellipse 36% 34% at 10% 80%, rgba(153, 27, 27, 0.38), transparent 48%),
        radial-gradient(ellipse 28% 26% at 48% 42%, rgba(239, 68, 68, 0.12), transparent 58%),
        linear-gradient(150deg, #140608 0%, #2a0e11 36%, #3f1519 62%, #321015 100%);
    animation: bdente-mesh-drift 24s ease-in-out infinite;
}

body.task-login::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.88;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cg fill='rgba(255,220,200,0.16)'%3E%3Ccircle cx='22' cy='22' r='1.3'/%3E%3Ccircle cx='110' cy='44' r='1.1'/%3E%3Ccircle cx='198' cy='28' r='1.3'/%3E%3Ccircle cx='44' cy='110' r='1.1'/%3E%3Ccircle cx='154' cy='99' r='1.4'/%3E%3Ccircle cx='88' cy='176' r='1.2'/%3E%3Ccircle cx='176' cy='154' r='1.1'/%3E%3Ccircle cx='22' cy='176' r='1'/%3E%3C/g%3E%3Cg stroke='rgba(255,200,180,0.08)' stroke-width='1'%3E%3Cline x1='22' y1='22' x2='110' y2='44'/%3E%3Cline x1='110' y1='44' x2='198' y2='28'/%3E%3Cline x1='22' y1='22' x2='44' y2='110'/%3E%3Cline x1='110' y1='44' x2='154' y2='99'/%3E%3Cline x1='44' y1='110' x2='88' y2='176'/%3E%3Cline x1='154' y1='99' x2='176' y2='154'/%3E%3Cline x1='88' y1='176' x2='22' y2='176'/%3E%3Cline x1='176' y1='154' x2='198' y2='28'/%3E%3C/g%3E%3C/svg%3E"),
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 220px 220px, 26px 26px, 26px 26px;
    background-position: center center, center center, center center;
    mask-image: radial-gradient(ellipse 88% 78% at 50% 44%, #000 18%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 88% 78% at 50% 44%, #000 18%, transparent 100%);
    animation: bdente-mesh-grid 52s linear infinite;
}

@keyframes bdente-mesh-drift {
    0% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(2%, -2.5%) scale(1.05);
    }
    66% {
        transform: translate(-2.5%, 2%) scale(1.03);
    }
    100% {
        transform: translate(1.5%, -1%) scale(1.04);
    }
}

@keyframes bdente-mesh-grid {
    0% {
        background-position: 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 220px 220px, 52px 52px, 52px 52px;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.task-login::before,
    body.task-login::after {
        animation: none;
    }
}

body.task-login #layout {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 1.5rem 1.5rem 4rem;
}

body.task-login .bdente-login-shell {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(100%, 520px);
    max-width: 520px;
    gap: 1.5rem;
}

body.task-login #layout-content,
body.task-login #layout-content.bdente-login-card,
html.dark-mode body.task-login #layout-content {
    position: relative;
    top: auto !important;
    transform: none;
    width: 100% !important;
    max-width: 100%;
    margin: 0;
    text-align: center;
    background: linear-gradient(
        165deg,
        rgba(255, 255, 255, 0.14) 0%,
        rgba(255, 255, 255, 0.07) 48%,
        rgba(255, 255, 255, 0.05) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 32px;
    backdrop-filter: blur(32px) saturate(160%);
    -webkit-backdrop-filter: blur(32px) saturate(160%);
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    padding: 2.15rem 2.75rem 2.5rem;
    color: #fff;
    overflow: visible;
}

body.task-login #layout-content::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 33px;
    padding: 1px;
    background: linear-gradient(
        145deg,
        rgba(252, 211, 77, 0.22),
        rgba(255, 255, 255, 0.08) 40%,
        rgba(153, 27, 27, 0.15)
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
}

body.task-login #layout-content::before {
    content: "";
    position: absolute;
    inset: -40px -20px auto;
    height: 180px;
    background: radial-gradient(circle, rgba(252, 211, 77, 0.14), transparent 70%);
    pointer-events: none;
}

.bdente-login-brand {
    position: relative;
    z-index: 1;
    margin-bottom: 0.15rem;
}

body.task-login .bdente-login-shell > .bdente-login-logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 0.5rem;
    flex-shrink: 0;
}

body.task-login #logo,
body.task-login .bdente-login-logo {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    display: block;
    width: auto !important;
    max-width: min(360px, 88vw) !important;
    max-height: 92px !important;
    height: auto !important;
    margin: 0 auto;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.38));
}

.bdente-login-title {
    margin: 0 0 0.45rem;
    font-family: Inter, Roboto, sans-serif;
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.35;
}

.bdente-login-subtitle {
    margin: 0 0 1.75rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.55;
    max-width: 36ch;
    margin-left: auto;
    margin-right: auto;
}

body.task-login #login-form,
body.task-login #login-form.bdente-login-form {
    top: auto !important;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    margin: 0;
    text-align: left;
}

/* Só table/tbody em block (como no Elastic). Forçar tr/td em block quebra
   o .input-group do Bootstrap e deixa os inputs com width:1% (invisíveis). */
body.task-login #login-form table,
body.task-login #login-form tbody {
    display: block;
    width: 100%;
}

body.task-login #login-form tr.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 0 1.35rem;
}

body.task-login #login-form td.input-group {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
    border: 0;
    gap: 0;
}

body.task-login #login-form .bdente-field-label {
    display: block;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin: 0 0 0.55rem;
    hyphens: none;
    -webkit-hyphens: none;
    white-space: nowrap;
    overflow: visible;
}

body.task-login #login-form label,
body.task-login #login-form .input-group-text {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 0.55rem;
    border: none;
    background: transparent;
    padding: 0;
    hyphens: none;
    -webkit-hyphens: none;
    white-space: nowrap;
}

body.task-login #login-form .input-group-prepend,
body.task-login #login-form .input-group-append {
    display: none !important;
}

body.task-login #login-form .form-control,
body.task-login #login-form input[type="text"],
body.task-login #login-form input[type="password"],
body.task-login #login-form input[type="email"] {
    display: block;
    width: 100% !important;
    max-width: 100%;
    flex: 1 1 auto !important;
    background: rgba(0, 0, 0, 0.28) !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    border-radius: 18px !important;
    color: #fff !important;
    padding: 1.05rem 1.15rem 1.05rem 3rem !important;
    font-size: 1.05rem;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12) !important;
    min-height: 56px;
    background-repeat: no-repeat !important;
    background-position: 1.1rem center !important;
    background-size: 1.15rem 1.15rem !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

body.task-login #rcmloginuser {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.45)' stroke-width='2'%3E%3Cpath d='M4 6h16v12H4z'/%3E%3Cpath d='m4 7 8 6 8-6'/%3E%3C/svg%3E") !important;
}

body.task-login #rcmloginpwd {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.45)' stroke-width='2'%3E%3Crect x='5' y='11' width='14' height='10' rx='2'/%3E%3Cpath d='M8 11V8a4 4 0 0 1 8 0v3'/%3E%3C/svg%3E") !important;
}

body.task-login #login-form .form-control::placeholder,
body.task-login #login-form input::placeholder {
    color: rgba(255, 255, 255, 0.38);
}

body.task-login #login-form .form-control:focus,
body.task-login #login-form input:focus {
    border-color: rgba(252, 211, 77, 0.58) !important;
    box-shadow: 0 0 0 4px rgba(252, 211, 77, 0.12) !important;
    background-color: rgba(0, 0, 0, 0.32) !important;
    outline: none !important;
}

body.task-login #login-form .formbuttons {
    margin: 0.75rem 0 0;
    padding: 0;
}

body.task-login #rcmloginsubmit,
body.task-login #login-form button[type="submit"],
body.task-login #login-form .button.mainaction {
    width: 100%;
    margin-top: 0.5rem;
    border: none !important;
    border-radius: 999px !important;
    padding: 1.1rem 1.5rem !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    text-transform: none !important;
    letter-spacing: 0.01em;
    color: #fff !important;
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 48%, #7f1d1d 100%) !important;
    box-shadow:
        0 14px 32px rgba(127, 29, 29, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    min-height: 56px;
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

body.task-login #rcmloginsubmit:hover:not(:disabled),
body.task-login #login-form button[type="submit"]:hover:not(:disabled) {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%) !important;
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(127, 29, 29, 0.5);
}

body.task-login #rcmloginsubmit.is-loading {
    opacity: 0.88;
    cursor: wait;
    transform: none;
    pointer-events: none;
}

body.task-login #login-footer {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.52);
    margin-top: 1.65rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

body.task-login #login-footer > div {
    background: transparent;
    padding: 0;
}

.bdente-login-note {
    margin: 0 0 0.85rem;
    font-size: 0.86rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.52);
}

.bdente-login-note strong {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 600;
}

.bdente-login-back {
    margin: 0;
    font-size: 0.82rem;
}

.bdente-login-back a {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 600;
    text-decoration: none;
}

.bdente-login-back a:hover {
    color: #fff;
    text-decoration: underline;
}

body.task-login .oauthlogin {
    border-top-color: rgba(255, 255, 255, 0.12) !important;
    margin-top: 1rem;
    padding-top: 1rem;
}

body.task-login #messagestack {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 5;
    width: 100%;
    max-width: 100%;
    margin: 0 0 1rem !important;
    padding: 0;
}

body.task-login #messagestack:empty {
    display: none;
    margin: 0 !important;
}

body.task-login #messagestack > div {
    border-radius: 14px;
    padding: 0.85rem 1rem !important;
    font-size: 0.9rem;
    line-height: 1.45;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

body.task-login #messagestack .loading {
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    color: rgba(255, 255, 255, 0.88) !important;
}

body.task-login #messagestack .alert-warning {
    background: rgba(251, 191, 36, 0.18) !important;
    border: 1px solid rgba(252, 211, 77, 0.42) !important;
    color: #fde68a !important;
}

body.task-login #messagestack .alert-danger {
    background: rgba(239, 68, 68, 0.18) !important;
    border: 1px solid rgba(248, 113, 113, 0.35) !important;
    color: #fecaca !important;
}

body.task-login #messagestack .alert-success,
body.task-login #messagestack .alert-info {
    background: rgba(16, 185, 129, 0.16) !important;
    border: 1px solid rgba(52, 211, 153, 0.35) !important;
    color: #bbf7d0 !important;
}

body.task-login #messagestack.bdente-cookie-error::after {
    content: "Dica: limpe os cookies de bdente.com.br e webmail.bdente.com.br, ou peça ao admin para deixar session_domain vazio no config.inc.php.";
    display: block;
    margin-top: 0.65rem;
    font-size: 0.78rem;
    color: rgba(254, 202, 202, 0.88);
}

body.task-login .noscriptwarning {
    max-width: 460px;
    margin: 1rem auto;
    text-align: center;
    color: #fecaca;
}

body.task-login #supportlink,
body.task-login .support-link {
    display: none !important;
}

/* Rodapé SJ Solutions — base da página */
body.task-login .bdente-page-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 15;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.85rem 1rem 1.1rem;
    pointer-events: none;
}

body.task-login .bdente-page-footer a,
body.task-login .bdente-page-footer__link {
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    opacity: 0.88;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

body.task-login .bdente-page-footer a:hover,
body.task-login .bdente-page-footer__link:hover {
    opacity: 1;
    transform: translateY(-1px);
    text-decoration: none;
}

body.task-login .bdente-page-footer img {
    display: block;
    height: 34px;
    width: auto;
    max-width: none;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.4));
}

body.task-login .bdente-page-footer__sep {
    color: rgba(255, 255, 255, 0.45);
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1;
    user-select: none;
}

body.task-login .bdente-page-footer__name {
    color: rgba(255, 255, 255, 0.92);
    font-family: Inter, Roboto, sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1;
    white-space: nowrap;
}

/* Botão flutuante — sincronização Outlook / celular */
body.task-login .bdente-sync-fab {
    position: fixed;
    right: 1.25rem;
    bottom: 3.5rem;
    z-index: 120;
}

body.task-login .bdente-sync-fab__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    padding: 0.8rem 1.1rem 0.8rem 0.95rem;
    background: linear-gradient(145deg, rgba(185, 28, 28, 0.95), rgba(127, 29, 29, 0.98));
    color: #fff;
    font-family: Inter, Roboto, sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

body.task-login .bdente-sync-fab__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.42);
}

body.task-login .bdente-sync-fab__btn[aria-expanded="true"] {
    background: linear-gradient(145deg, rgba(63, 21, 25, 0.98), rgba(42, 14, 17, 0.98));
}

body.task-login .bdente-sync-fab__icon {
    width: 1.15rem;
    height: 1.15rem;
    flex-shrink: 0;
}

body.task-login .bdente-sync-fab__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 4, 5, 0.55);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: -1;
}

body.task-login .bdente-sync-fab__panel {
    position: absolute;
    right: 0;
    bottom: calc(100% + 0.85rem);
    width: min(92vw, 320px);
    padding: 1.35rem 1.25rem 1.2rem;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(165deg, rgba(48, 18, 22, 0.97), rgba(32, 10, 13, 0.98));
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.48);
    color: #fff;
    text-align: left;
}

body.task-login .bdente-sync-fab__close {
    position: absolute;
    top: 0.65rem;
    right: 0.75rem;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.15rem;
}

body.task-login .bdente-sync-fab__close:hover {
    color: #fff;
}

body.task-login .bdente-sync-fab__eyebrow {
    margin: 0 0 0.2rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(252, 211, 77, 0.82);
}

body.task-login .bdente-sync-fab__title {
    margin: 0 0 0.35rem;
    padding-right: 1.5rem;
    font-family: Belanosima, sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.15;
}

body.task-login .bdente-sync-fab__desc {
    margin: 0 0 1rem;
    font-size: 0.86rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.68);
}

body.task-login .bdente-sync-fab__qr-wrap {
    display: flex;
    justify-content: center;
    padding: 0.65rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    margin-bottom: 0.55rem;
}

body.task-login .bdente-sync-fab__qr {
    display: block;
    width: 168px;
    height: 168px;
    border-radius: 8px;
}

body.task-login .bdente-sync-fab__qr-hint {
    margin: 0 0 1rem;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.52);
}

body.task-login .bdente-sync-fab__quick {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body.task-login .bdente-sync-fab__quick li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
}

body.task-login .bdente-sync-fab__quick li span {
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

body.task-login .bdente-sync-fab__quick li strong {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-align: right;
}

body.task-login .bdente-sync-fab__quick li strong[data-bdente-copy] {
    cursor: pointer;
    border-radius: 6px;
    padding: 0.1rem 0.25rem;
    transition: background 0.15s ease;
}

body.task-login .bdente-sync-fab__quick li strong[data-bdente-copy]:hover {
    background: rgba(255, 255, 255, 0.08);
}

body.task-login .bdente-sync-fab__guide,
body.task-login button.bdente-sync-fab__guide {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.86rem;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s ease;
}

body.task-login .bdente-sync-fab__guide:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

body.task-login .bdente-sync-fab__guide-slot {
    margin: 0 0 0.85rem;
    max-height: 220px;
    overflow-y: auto;
    padding-right: 0.15rem;
}

body.task-login .bdente-sync-guide-detail h3 {
    margin: 0.85rem 0 0.45rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(252, 211, 77, 0.82);
}

body.task-login .bdente-sync-guide-detail h3:first-child {
    margin-top: 0;
}

body.task-login .bdente-sync-guide-detail ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

body.task-login .bdente-sync-guide-detail li {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.88);
}

body.task-login .bdente-sync-guide-detail li span {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

body.task-login .bdente-sync-guide-detail li strong {
    text-align: right;
    font-weight: 600;
}

body.task-login .bdente-sync-guide-detail li strong[data-bdente-copy] {
    cursor: pointer;
}

body.task-login .bdente-sync-guide-apps {
    margin: 0.75rem 0 0;
    font-size: 0.78rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.55);
}
@media (min-width: 768px) {
    body.task-login .bdente-login-shell {
        width: min(100%, 540px);
        max-width: 540px;
        gap: 1.75rem;
    }

    body.task-login #layout-content,
    body.task-login #layout-content.bdente-login-card {
        padding: 2.35rem 3rem 2.75rem;
    }

    .bdente-login-title {
        font-size: 1.45rem;
    }

    body.task-login #logo,
    body.task-login .bdente-login-logo {
        max-width: min(340px, 84vw) !important;
        max-height: 88px !important;
        width: auto !important;
        height: auto !important;
    }
}

@media (max-width: 480px) {
    body.task-login #layout {
        padding-bottom: 3.5rem;
    }

    body.task-login .bdente-login-shell {
        gap: 1.15rem;
    }

    body.task-login #layout-content,
    body.task-login #layout-content.bdente-login-card {
        padding: 1.75rem 1.45rem 1.65rem;
        border-radius: 26px;
    }

    .bdente-login-title {
        font-size: 1.2rem;
    }

    body.task-login #logo,
    body.task-login .bdente-login-logo {
        max-width: min(300px, 90vw) !important;
        max-height: 72px !important;
        width: auto !important;
        height: auto !important;
    }

    .bdente-login-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    body.task-login #login-form .form-control,
    body.task-login #login-form input[type="text"],
    body.task-login #login-form input[type="password"],
    body.task-login #login-form input[type="email"] {
        min-height: 52px;
        font-size: 1rem;
        padding: 0.95rem 1rem 0.95rem 2.85rem !important;
    }

    body.task-login .bdente-sync-fab {
        right: 0.85rem;
        bottom: 3.75rem;
    }

    body.task-login .bdente-page-footer img {
        height: 30px;
    }

    body.task-login .bdente-page-footer__name {
        font-size: 0.86rem;
    }

    body.task-login .bdente-sync-fab__label {
        display: none;
    }

    body.task-login .bdente-sync-fab__btn {
        width: 3.1rem;
        height: 3.1rem;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    body.task-login .bdente-sync-fab__panel {
        right: 0;
        width: min(calc(100vw - 1.7rem), 300px);
    }
}
