html {
    min-width: 100%;
    min-height: 100%;
    background-color: #d1d1d1;
    background-image: url('img/background.webp');
    background-repeat: unset;
    background-size: contain;
}
body {
    margin: 0;
    background-color: rgba(92, 113, 72, 0.5);
    padding: 50px;
    min-height: calc(100vh - 100px);
    min-width: calc(100% - 100px);
    position: relative;
}
.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
h1 {
    color: white;
    font-variant: small-caps;
    font-size: 1.75em;
    display: inline-block;
    text-align: center;
    width: calc(100% - 250px);
    font-weight: 300;
    font-family: Arial, Helvetica, sans-serif;
}
h1 {
    width: 100%;
}
table{
    width: 100%;
    box-shadow: 0px 5px 20px 5px #00000088;
}
table, th, td {
    border: 1px solid white;
    border-collapse: collapse;
    padding: 10px;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.05em;
}
th {
    font-weight: bold;
}
th:nth-child(2) {
    width: 200px;
    text-align: center;
}
th:nth-child(3) {
    width: 70px;
    text-align: center;
}
thead {
    background-color: rgba(92, 113, 72, 1);
}
tr:nth-child(2n) {
    background-color: rgba(92, 113, 72, 0.5);
}
tbody tr:hover {
    background-color: #ffffff44;
}
img {
    height: 25px;
    width: 25px;
    filter: invert(100%);
    margin-left: 5px;
    margin-right: 5px;
    transition: filter 0.3s;
}
a:hover > img, a:focus > img {
    filter: invert(40%);
    transition: filter 0.3s;
    outline: none;
}
a:hover, a:focus {
    outline: none;
}


form {
    padding: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
}
input[type="password"], input[type="submit"] {
    border: none;
    outline: none;
    height: 40px;
    width: 350px;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-right: 5px;
    padding-left: 25px;
    padding-right: 25px;
    font-size: 1.2em;
    letter-spacing: 1px;
}
input[type="submit"] {
    width: 400px;
}
input::placeholder {
    color: rgb(92, 113, 72);
    letter-spacing: unset;
}
input[type="password"]:hover, input[type="password"]:focus {
    background-color: rgba(191, 191, 191, 255);
    border-bottom: 2px solid white;
    /* margin-top: 3px; */
    height: 38px;
}input[type="submit"]:hover, input[type="submit"]:focus {
    background-color: rgba(191, 191, 191, 255);
    border-bottom: 2px solid white;
    /* margin-top: 3px; */
    height: 40px;
}