#loginContainer {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 424px;
}
#loginContainer h1, #loginContainer h2 {
    text-align: center;
    margin: 0;
}
#copyright {
    margin: 0;
    font-size: 12px;
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 5px;
    color: rgba(0, 0, 0, 0.8);
}
#copyright a {
    text-decoration: none;
    color: inherit;
}
#copyright a:hover {
    text-decoration: underline;
}
#loginContainer h1 {
    font-size: 42px;
}
#loginContainer h2 {
    font-size: 20px;
    margin-bottom: 100px;
}
.inputDiv {
    width: 500px;
    height: 40px;
    overflow: hidden;
    transition: all 0.333s;
}
.inputDiv span {
    width: 50%;
    float: left;
    text-align: right;
    line-height: 40px;
    padding-right: 10px;
    box-sizing: border-box;
}
.inputDiv input {
    font-family: inherit;
    font-size: 16px;
    float: left;
    width: 50%;
    margin-top: 2px;
    padding-left: 5px;
    border-radius: 5px;
    border: 2px solid rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
    padding: 3px;
    background: white;
}
.inputDiv input:focus {
    outline: none;
    border: 2px solid rgb(94, 140, 168);
}
.inputDiv input:disabled {
    opacity: 0.5;
}
#loginContainer p {
    text-align: center;
    font-size: 14px;
    display: block;
    margin: 0;
    opacity: 0.5;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s;
}
#loginContainer p:hover {
    opacity: 1;
    text-decoration: underline;
}
#loginButton {
    margin-top: 30px;
}

/* CONFIG */

#configSelection table {
    width: 75%;
    transition: opacity 0.25s;
    margin: auto;
    margin-bottom: 10px;
}
#configSelection table tr:not(:first-child) {
    cursor: pointer;
}
#configSelection table tr:not(:first-child):hover {
    background: rgba(0, 0, 0, 0.068);
}
#configSelection table tr:not(:first-child):active {
    background: rgba(0, 0, 0, 0.11);
}
#configSelection table tr:not(:last-child) td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
#configSelection table tr td {
    user-select: none;
}
#configSelection table tr {
    text-align: center;
}