.logo-container {
    max-width: 180px;
}

.auth-left {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../../images/auth-bg.jpg') no-repeat center center;
    background-size: cover;
} 

.auth-left {
    height: 100vh; /* Garante que o container ocupe toda a altura da tela */
    overflow: hidden; /* Esconde qualquer coisa que ultrapasse o limite */
}
.auth-img {
    max-height: 100vh; /* Limita a altura da imagem à altura da tela */
    width: auto;
    object-fit: cover; /* Mantém o aspecto e cobre o espaço */
    display: block;
}

/* Footer elegante Zap2B no login */
.auth-footer-zap2b {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* Link do texto "Powered by Zap2B" */
.auth-footer-zap2b .auth-powered-by {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.8;
    text-decoration: none;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.auth-footer-zap2b .auth-powered-by:hover {
    opacity: 1;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

/* Link da logo */
.auth-footer-zap2b a {
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.auth-footer-zap2b a:hover {
    text-decoration: none;
}

.auth-logo-small {
    height: 20px;
    opacity: 0.7;
    filter: brightness(0.9);
    transition: opacity 0.3s ease;
}

.auth-footer-zap2b a:hover .auth-logo-small {
    opacity: 1;
}