*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.logout-div {
    position: absolute;
    top: 40%;
    left: 40%;
    right: 38%;
    text-align: center;
}

.footer {
    position: absolute;
    bottom: 0;
    right: 38%;
    left: 38%;

}

.logout-link,
.reset-password-button {
    width: 160px;
    height: 30px;
    background: #37826d;
    border-radius: 5px;
    color: #f2f2f2;
    border: 5px solid #37826d;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
}

.logout-link:hover,
.logout-link:active,
.reset-password-button:hover,
.reset-password-button:active,
.login-button:hover,
.login-button:active {
    transform: scale(1.1);
    text-decoration: underline;
    background-color: #555;
    color: white;
    border-color: #555;
}

.login-button {
    width: 100px;
    height: 30px;
    background: #37826d;
    border-radius: 5px;
    color: #f2f2f2;
    border: 5px solid #37826d;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
}


.login-div,
.password-reset-form {
    display: block;
    margin-top: 15%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.username-input,
.password-input,
.email-input {
    margin: 30px;
}

table {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    padding: 0;
    width: 30vw;
    text-align: center;
}

.login-reset-buttons {
    display: flex;
    justify-content: center;
    gap: 70px;
}