body {
    height: 100vh;
    background: #000000;
    margin: 0;
    font-family: tahoma;
}

input {
    padding: 4px;
    margin: 5px;
    text-align: center;
    font-size: 20px;
    font-family: tahoma;
    background: #333333;
    border: 2px solid #666666;
    color: #AAAAAA;
    border-radius: 4px;
}

#box {
    position: absolute;
}

svg {
    position: absolute;
}

button {
    padding: 8px;
    background: #333333;
    border: 2px solid #999999;
    border-radius: 4px;
    color: #CCCCCC;
    transition: 0.25s;
    font-family: tahoma;
}

button:hover {
    background: #777777;
    border: 2px solid #AAAAAA;
}


.fieldLabel {
    color: #999999;
    padding-top: 5px;
}

#backgroundLines {
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(-50%, -50%);
    width: 5000px;
    height: 5000px;
}

#loginDiv {
    padding: 10px;
    text-align: center;
    border: 3px solid #666666;
    float: top;
    border-radius: 3px;
    width: 300px;
    margin-left: auto;
    margin-right: auto;
}

#loginTitle {
    text-align: center;
    color: #999999;
    font-size: 40px;
    padding-top: 200px;
}

#submit {
    margin-top: 20px;
}