html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: "Segoe UI", Arial, sans-serif;
    overflow: hidden;
}

/* ===== CONTAINER GERAL ===== */
.login-container {
    position: relative;
    height: 100vh;
    width: 100%;
    background: #0e0e0e; /* fundo escuro como no mock */
}

/* ===== LOGIN ===== */
.login-form {
    margin-left: 80px;
}
.login-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    min-width: 340px;
    height: 100%;
    background: #ffffff;

    display: flex;
    align-items: center;
    justify-content: left;
}

/* Card do login */
.login-card {
    width: 100%;
    min-width: 350px;
    height: 100%;
    max-width: none;
    padding: 3rem 2.5rem;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    transition: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Logo */
.login-logo {
    display: block;
    margin: 0 auto 1.5rem;
    max-width: 140px;
}

/* Título */
.login-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
}

/* Inputs */
.p-inputtext,
.p-password {
    width: 100%;
}

/* Botão */
.login-btn {
    width: 100%;
    font-weight: bold;
}


.login-divider {
    position: absolute;
    left: 50%;
    top: 0;
    width: 100%;
    height: 100%;
    background: #F0F0F0; /* troque p/ green se quiser ver */
    z-index: 1;
}


.login-video {
    position: absolute;
    top: 50%;
    right: 180px;
    left: 560px;
    height: 70%;
    margin-right: 10px;
    transform: translateY(-50%);
    z-index: 2;

    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0,0,0,0.65);
}

/* Vídeo */
.login-video video {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

/* Overlay escuro */
.login-video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.logo-caw{
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 1;
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 1220px) {

    /* Esconde vídeo e divisória */
    .login-video,
    .login-divider {
        display: none !important;
    }

    /* Container ocupa tudo */
    .login-container {
        background: #ffffff;
    }

    /* Login ocupa 100% */
    .login-left {
        position: relative;
        width: 100%;
        min-width: unset;
        height: 100vh;

        justify-content: center;
        padding: 1.5rem;
    }

    /* Remove deslocamento lateral */
    .login-form {
        margin-left: 0;
        width: 100%;
        max-width: 420px;
    }

    /* Card mais compacto no mobile */
    .login-card {
        min-width: unset;
        padding: 2rem 1.5rem;
    }

    /* Logo menor */
    .login-logo {
        max-width: 120px;
    }

    /* Título um pouco menor */
    .login-title {
        font-size: 1.15rem;
    }

    .logo-caw{
        position: absolute;
        bottom: 10px;
        /*70px é o tamanho da imagem definido no height do login.xhtml*/
        right: calc(50% - 70px);
    }
}

.btnMutarDesmutar {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 3;

    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;

    cursor: pointer;
    font-size: 18px;
}