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

html {
    height: 100%;
    width: 100%;
    background: rgb(25, 25, 25);
    color: white;
    font-family: monospace;
    font-size: 1rem;
}

body {
    display: flex;
    min-height: 100%;
    flex-direction: column;
}

header, main {
    padding: 0 1rem;
}

header {
    background: rgb(10, 10, 10);
}

main {
    flex: 1;
    display: flex;
    gap: 2rem;
    width: 100%;
    padding: 2rem;
    max-height: 100vh;
    min-height: 600px;
}

input {
    color: white;
}

input[type="number"] {
    -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

header h1 {
    line-height: 3rem;
}

main > section {
    flex: 1;
    display: flex;
    gap: .5rem;
    flex-direction: column;
    align-items: stretch;
    height: 550px;
}

#home-page {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#passwordForm {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    border: 1px solid grey;
    padding: 1rem
}

.input-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.input-group > input {
    flex: 1;
    background: transparent;
    border: unset;
}

.input-group .input-value-display {
    min-width: 50px;
}

.input-button {
    width: fit-content;
    margin-top: 2rem;
    padding: 0 2rem;
    line-height: 1.5rem;
    border: 1px solid rgb(200,200,200);
    background: transparent;
    color: rgb(200,200,200);
}

#output {
    padding: 2rem;
    border: 1px solid rgb(200,200,200);
    height: 100%;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: green;
    scrollbar-base-color: aquamarine;
    scrollbar-face-color: blueviolet;
}

#output > li {
    list-style: none;
    line-height: 2rem;
    text-align: right;
}

fieldset.checkbox-set {
    outline: none;
    border: none;
    padding-left: 1rem;
    padding-top: 1rem;
}

fieldset.checkbox-set .input-group {
    margin-bottom: 0.5rem;
    display: flex;
}

fieldset.checkbox-set label {
    flex: 3;
}

fieldset.checkbox-set input[type="checkbox"] {
    flex: 1;
    outline: none;
}