/*====================== MODAL INTRODUCIR CONTRASEÑA ========================*/
#dialog-pass {
    border-radius: var(--border-radius);
    width: 430px;
    height: 164px;
    background: #101d23;
    border: 1px solid #1c2b32;
    padding: 0px;
    position: relative;
    background-size: auto;
    overflow: hidden;
}
#titulo-pass {
    width: 100%;
    height: 32px;
    background: black;
    display: flex; 
}
#titulo-text-pass {
    height: 32px;
    line-height: 32px;
    font-weight: 500;
    margin-left: 14px;
}
#div-input-dialog-pass {
    display: block;
    width: 406px;
    height: 54px;
    /*centrar texto*/
    margin: 14px;
    margin-top: 16px;

}
#input-dialog-pass {
    display: block;
    /*centrar*/
    margin: 0 auto;

    width: 200px;
    height: 36px;
    color: black;
    -webkit-text-security: disc;
}
#dialog-pass::backdrop {
    background-color: rgba(0, 0, 0, 0.559);
}
#div-accept-pass {
    margin: 0 auto;
}
#btn-accept-pass {
    display: block;
    width: 114px;
    height: 32px;
    line-height: 32px;
    margin: 0 auto;  
	cursor: pointer;
    border-radius: var(--border-radius);
    background-color: #29a862;
    border: none;

    font-weight: 500;
    text-shadow:
        0 0 7px #101d23,
        0 0 10px #101d23,
        0 0 21px #101d23;
}
#btn-accept-pass:hover {
    box-shadow: 0 0 10px 0 #29a862 inset, 0 0 20px 2px #29a862;   
}
#close-dialog-pass{
    width: 24px;
    position: absolute;
    top: 4px;
    right: 4px;
    cursor: pointer;
}


