#passshow{
    display: none;
}

        
/*STYLE FOR MODAL*/
.modal{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    overflow:auto;
    z-index:2;
    background-color:white;
    display:none;
}
.modalcloser{
    width:100%;
}
.closerbtn{
    margin-left:94%;
    max-width:70px;
    max-height:70px;
    background-color:red;
    color:white;
    cursor:pointer;
    border:none;
    border-radius:50%;
}
.modalinner{
    width:96%;
    margin-left:1%;
    padding:5px;
    background-color:white;
    color:#545150;
    /*box-shadow:2px 3px 6px 4px rgba(0,0,0,0.2);*/
    border-radius:10px;
}