* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: rgb(61, 146, 201);
}

#layout {
    padding: 0px 0px 0px 0px;
}

.sidebar {
    background: #ffdab9;
    color: #000000;
}

.home-menu {
    padding: .5rem 1rem;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.5em;
    text-transform: none;
    text-decoration: none;
    font-family: "serif";
    font-size: 28px;
    letter-spacing: 0px;
    line-height: 34px;
    color: #000000;
}

.icon {
    width: 48px;
}

.content {
    margin-left: auto;
    margin-right: auto;
    padding: 0 2em 0;
}

.box {
    display: flex;
    justify-content: center;
}

.credentials-box {
    margin: 10px;
    display: grid;
    grid-template-columns: 2fr 3fr 2fr;
    grid-template-rows: 30px repeat(3, 30px);
    gap: 5px;
    align-items: center;
    font-family: sans-serif;
    font-size: 12px;
}

.credentials-title {
    grid-area: auto / 1 / auto / 4;
    font-weight: 700;
    cursor: default;
}

.credentials-box input {
    grid-area: auto / 2 / auto / 4;
    height: 28px;
    background-clip: padding-box;
    border-color: rgb(104, 104, 104) rgb(183, 183, 183) rgb(183, 183, 183);
    border-style: solid;
    border-width: 1px;
}

.credentials-box button {
    grid-area: auto / 3 / auto / 4;
    cursor: pointer;
    padding: 3px 8px;
    width: 55px;
    height: 30px;
    background: rgb(249, 249, 249);
    background-image: linear-gradient(rgb(249, 249, 249) 40%, rgb(227, 227, 227) 70%);
    border-color: rgb(187, 187, 187);
    border-style: solid;
    border-width: 1px;
    border-radius: 3px;
    justify-self: right;
}

.credentials-box button:hover {
    border-color: rgb(147, 147, 147);
}

.credentials-box button:active {
    border-color: rgb(117, 117, 117);
    background: rgb(224, 224, 224);
    background-image: linear-gradient(rgb(186, 186, 186) 40%, rgb(235, 235, 235) 70%);
}

.credentials-box button:focus {
    border-color: rgb(61, 114, 201);
}

#errorlabel {
    grid-area: auto / 1 / auto / 3;
    color: red;
    cursor: default;
}
