* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#mapa{
    position:absolute;
    top:0;
    left:0;
    width:100vw;
    height:100vh;
}

#dash {
    position: absolute;
    top: 0px;
    left:0px;
    z-index: 1001;
    width:435px;
    background:rgba(255,255,255,0.85);
}
    #dash h1 {
        text-transform: uppercase;
        background: red;
        font-size: 16pt;
        display: flex;
        align-items: center;
        justify-content: center;
        color:white;
        text-shadow: 0px 0px 15px gray;
        background: linear-gradient(blue,navy);
    }

#login {
    position: absolute;
    top: 0px;
    left:0px;
    z-index: 1001;
    background: rgb(0,0,0,0.45);
    backdrop-filter:blur(3.75px);
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

}
    #login > div {
        padding: 7.5px;
        width: 395px;
        background: rgba(0,0,0,0.65);
        border-radius: 25px;
    }

.form-control{
    margin: 7.5px 0px;
}
.icon{
    color: white;
}

#botones {
    list-style-type: square;
    list-style-position: inside;
    max-height: 255px;
    overflow: hidden;
    overflow-y:auto;
}
#botones li{
    border-bottom:1px solid silver;
    text-transform:uppercase;
    padding:7.5px;
    font-size:14pt;
    font-weight:600;
    user-select:none;
    cursor:default;
}