/* Estilos para o Lightbox de Login */

#nexogeno-login-lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

#nexogeno-login-lightbox {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1001;
    width: 90%;
    max-width: 450px;
    text-align: center;
}

#nexogeno-login-lightbox h2 { margin-top: 0; color: #333; }
#nexogeno-login-lightbox p { margin: 15px 0 25px; color: #666; line-height: 1.5; }

#nexogeno-login-lightbox .button {
    background-color: orange;
    color: #000;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#nexogeno-login-lightbox .button:hover { background-color: #007991; color: #000; }

#nexogeno-login-lightbox .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
}

#nexogeno-login-lightbox .close-btn:hover { color: #333; }