.face-login-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 999999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* PERFECT CIRCLE VIDEO */
#face-video {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

/* PERFECT MATCHING OVERLAY */
.face-overlay {
    position: absolute;
    width: 300px;   /* slightly bigger for glow */
    height: 300px;
    border-radius: 50%;
    border: 4px solid #e7af0b;   /* requested color */
    box-shadow: 0 0 25px #e7af0b;
    z-index: 3;
    pointer-events: none;
}

/* STATUS TEXT */
.face-login-status {
    margin-top: -30px;
    color: white;
    font-size: 16px;
    text-align: center;
    z-index: 4;
}
