body {
    background-color: #ccccff;
    margin: 0;
    font-family: Verdana, sans-serif;
    font-size: 0.95rem;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1428ba;
    padding: 10px;
    color: white;

    a {
        text-decoration: none;
        font-weight: bold;
        color: inherit;
        transition: color 0.3s ease-in-out;

        &:hover {
            color: #ccccff;
        }
    }
}

main {
    padding: 10px;

    h1 {
        margin: 10px 0 10px 0;
        color: blue;
    }

    h2 {
        font-style: italic;
        font-size: 120%;
        color: gray;
    }
    a {
        color: inherit;
        text-decoration: none;
        transition: color 0.3s ease-in-out;
    }
    a:hover {
        color: blue;
    }
}

main.auth, main.cashiers, main.locations {
    display: flex;
    flex-direction: column;
    align-items: center;

    > * {
        display: inline-block;
        margin: auto;
    }

    h1 {
        margin-top: 50px;
        margin-bottom: 40px;
        text-align: center;
    }

    h2 {
        color: blue;
        font-style: unset;
        font-size: 1.4rem;
    }

    form > div {
        vertical-align: top;
    }

    label {
        width: 8em;
        display: inline-block;
    }

    input {
        margin: 5px 0;
    }

    a {
        display: inline-block;
        margin: 10px auto;
    }

    li a {
        margin: 5px 0;
    }
}

main.cashiers, main.locations {
    > div {
        padding: 20px 40px;
        background-color: white;
        border: 5px solid gray;
    }

    h1 {
        margin-top: 0;
        margin-bottom: 10px;
    }
}
