body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

form {
    display: grid;
}

#password-change-form.disabled {
    pointer-events: none;
    opacity: 0.3;
}

#error-message {
    color: red;
    font-weight: bold;
    border: 1px solid #aaa;
    padding: 10px;
    margin: 10px 0px;
    border-radius: 8px;
}

button {
    background-color: #eee;
    cursor: pointer;
}

button:hover {
    background-color: #ccc;
}

input,
button {
    margin-bottom: 20px;
    font-size: 16px;
    padding: 10px 8px;
    border-radius: 8px;
    border: 1px solid #aaa;
}

input:disabled {
    cursor: no-drop;
    background-color: #bbb;
}

.hide {
    display: none;
}

.submit-area {
    display: grid;
    grid-auto-flow: row;
}

#link {
    background-color: #eee;
    border: 1px solid #aaa;
    padding: 10px;
    display: block;
    white-space: wrap;
    word-wrap: break-word;
    font-size: 12px;
    border-radius: 8px;
}

.apps-wrapper {
    display: flex;
    align-content: center;
}

.apps {
    display: grid;
    max-width: 1000px;
    grid-template-columns: repeat(4, minmax(auto, 300px));
}

.apps .app {
    display: grid;
    grid-auto-flow: row;
    width: 100%;
    max-width: 300px;
    min-width: 110px;
    justify-content: center;
    text-decoration: none;
    align-content: start;
    color: #333;
}

.apps .app .icon {
    justify-self: center;
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #eee;
}

.apps .app .name {
    text-align: center;
    font-weight: bold;
    padding: 10px 0px;
    font-size: large;
}

.apps .app .description {
    font-size: 14px;
}