body {
    margin: 0;
}

.auth-prompt {
    z-index: 9999;
    position: fixed;
    width: 100%;
    height: 100%;
}

.auth-content {
    text-align: center;
    position: fixed;
    max-width: 500px;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    color: white;
}

.auth-input {
    padding: 5px;
    background-color: transparent;
    color: white;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1 px solid white
}

#login {
    border: 0;
    padding: 7px;
    margin: 5px
}

#login:hover {
    cursor: pointer;
}