div.shadow {
    position: fixed;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    background-color: rgb(20,20,20,0.65);
    display: none;
    z-index: 100;
}

div.loginform {
    position: absolute;
    background-color: #23272A;
    width: 500px;
    height: 300px;
    left: calc(50% - 250px);
    top: calc(50% - 150px);
    z-index: 101;
    color: whitesmoke;
    box-shadow: 0px 0px 10px #7289DA;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    font-family: "Roboto";
}

div.loginform h2 {
    margin: 0px;
    margin-top: 10px;
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: solid 2px #7289DA;
    position: relative;
    width: 90%;
    left: 5%;
}

div.loginform div.header {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 30px;
    line-height: 30px;
    font-size: 20px;
    font-family: "Roboto Condensed";
    background: linear-gradient(to right, cyan, darkcyan);
    width: 100%;
    font-weight: bold;
    padding-left: 10px;
}

div.loginform table {
    width: 80%;
    left: 10%;
    top: 40px;
    position: absolute;
    margin-top: 25px;
}

table tr td {
    font-family: "Roboto Condensed";
    color: grey;
    text-align: left;
    font-size: 12px;
}

table tr td.padded {
    padding-top: 10px;
}

table tr td a {
    color: #7289DA;
}

input {
    width: 100%;
    border: none;
    color: whitesmoke;
    border: 1px black;
    padding: 7.5px;
    border-radius: 5px;
    background-color: rgb(20,20,20,0.65);
}

div.loginform table tr td input[type='submit'] {
    background: linear-gradient(to right, cyan, darkcyan);
    color: white;
    text-shadow: 1px 1px black;
    width: 100%;
    border: none;
}