* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #181A1B;
    font-family: 'Lato', 'Helvetica Neue', Helvetica, sans-serif;
    color: #CAC5BE;
}

a {
    font-size: 18px;
    color: #CAC5BE;
    text-decoration: none;
}

a:hover {
    color: #c0bbb6;
    text-decoration: underline;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
}

header.nav {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
    margin: 20px 0px;

    & > hr {
        width: 100%;
    }
}

footer.nav {
    flex-direction: column;
    justify-content: space-between;
    max-width: 800px;
    width: 75%;
    padding: 10px;
    padding-bottom: 0;
    text-align: center;

    & > table {
        margin: 10px 0px;
        width: 100%;
        table-layout: fixed;
    }
}

.content {
    max-width: 800px;
    width: 75%;
    text-align: center;
}

div.login {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;

    & > form {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        width: 300px;

        & > button {
            width: 100%;
            height: 23px;
            padding: 3px 5px;
            background-color: #28292b;
            border: 1px solid #303333;
            color: #c0bbb6;
            border-radius: 5px;
            
            &:hover {
                background-color: #2d2e30;
            }

            &:active {
                background-color: #313233;
            }
        }

        & > input {
            height: 23px;
            width: 300px;
            padding: 3px 5px;
            background-color: #28292b;
            border: 1px solid #303333;
            color: #c0bbb6;
            border-radius: 5px;
            
            &:hover {
                background-color: #2d2e30;
            }
        }
    }
}

p.error {
    color: red;
    font-size: 14px;
}
