.modal-senha-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal-senha-overlay.show {
    display: flex;
}

.modal-senha-content {
    background: #111;
    border: 1px solid #ffd700;
    border-radius: 15px;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    position: relative;
    color: #fff;
}

.modal-senha-close {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #aaa;
}

.modal-senha-close:hover { color: #fff; }

.modal-senha-title {
    color: #ffd700;
    margin-top: 0;
    text-align: center;
}

.input-group-senha input {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #333;
    background: #222;
    color: #fff;
    box-sizing: border-box;
}

.btn-moderno {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    box-sizing: border-box;
}

.btn-primario {
    background: #fff;
    color: #000;
}

.btn-primario:hover { background: #eee; }

.btn-sucesso {
    background: #ffd700;
    color: #000;
}

.btn-sucesso:hover { background: #e6c200; }

.escondido { display: none; }