#login
{
    cursor: pointer;
    font-size: 14px;
}
#login:hover
{
    color: #ffa200;
    text-decoration: underline;
    font-size: 14px;
}
#bkPass
{
    display: none;
    background: #00000075;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0vh;
    bottom: 50vh;
}
#pass
{
    width: 50%;
    height: 250px;
    position: fixed;
    top: 10%;
    left: 25%;
    background: #fff;
    border-radius: 5px;
    box-shadow: 5px 5px 15px;
}
#pass label
{
    position: absolute;
    padding: 7px;
    text-align: left;
    font-size: 14pt;
    width: 25%;
    top: 12.5%;
    left: 10%;
    border-bottom: 1px solid;
}
#pass input
{
    box-shadow: 2px 2px 4px;
    position: absolute;
    top: 16%;
    left: 45%;
    border-radius: 5px;
    font-size: 20pt;
}
#pass button
{
    position: absolute;
    transition: background-color 0.5s ease;
    background-color: #1a9bed;
    color: #ffffff;
    top: 40%;
    left: 40%;
    width: 25%;
    height: 50px;
    font-size: 22px;
    border-radius: 5px;
    box-shadow: 2px 2px 5px;
}
#pass button:hover
{
    background-color: #16b7e5;
}
#failure
{
    display: none;
    position: absolute;
    top: 70%;
    left: 30%;
    width: 50%;
    height: 50px;
    font-size: 22px;
}