body {
    margin: 0px;
    background-color: #313338;
    font-family: Arial;
    color: white;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
}
.content {
    width: 100%;
    height: 100%;
}
.front-panel-anchor {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.front-panel {
    background-color: #313338;
    color: white;
    margin: auto;

    min-width: 250px;
    min-height: 500px;
    width: 350px;
    height: 350px;

    box-shadow: 0 0px 15px rgba(0,0,0,.1);
    
    justify-content: center;
    align-items: center;
    text-align: center;
    list-style-type: none;
    font-size: 13;
}
.error-panel {
    /* width: 0; */
    min-height: 0;
    width: min-content;
    height: min-content;
    padding: 30px;
}
.front-panel > form {
    margin: 0;
}
.remember-password {
    text-align: center;
    margin-left: 15%;
    margin-right: 15%;
    margin: auto;
}
.checkbox {
    margin: auto;
    text-align: left;
    margin-left: 15%;
    margin-right: 15%;
}
.ashes-logo {
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    border-radius: 64px;
}
@keyframes generate-link-keyframe-off {
    from {background-color: #4752C4;}
    to {background-color: #5865F2;}
}

.signin-signout {
    text-decoration: none;
    background-color: #5d6af7;
    border-radius: 4px;
    color: white;
    border: none;
    cursor: pointer;
    outline: none;
    overflow: hidden;
    width: 200px;
    height: 30px;
    margin: 10;
    transition: 0.3s;
}
@keyframes generate-link-keyframe-on {
    from {background-color: #5865F2;}
    to {background-color: #5865F2;}
}
.signin-signout:hover {
    background-color: #4752C4;
    animation-name: generate-link-keyframe-on;
}
.input-field {
    border-radius: 4px;
    margin: 4px;
    border: none;
    background-color: #2d2f33;
    color: white;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
}
.login-info-banner {
    color: red;
    padding: 10px;
    font-size: 12px;
}
.footer {
    padding-bottom: 2%;
}
.footer > * > a{
    color:#7882f5;
    text-decoration: none;
    margin: auto;
}
.front-panel .banner {
    display: flex;
    flex-direction: row;
}
.front-panel .banner > a {
    flex: 50%;
    color:#7882f5;
    text-decoration: none;
    margin: auto;
    padding-top: 5px;
    padding-left: 5px;
    padding-right: 5px;
}
.token-question-hover > p {
    margin: auto;
    color: white;
    background-color: #494848;
    padding: 5px;
    text-align: center;
    border: solid 1px rgb(114, 114, 114);
}

.item-container {
    border: red solid 1px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
}
.item {
    border: blue solid 1px;
    /* width: 100%; */
    /* height: 100%; */
    width: 100%;
    margin: auto;
}
.item .header {
    text-align: center;
}
.item-icon {
    margin: auto;
    margin-top: 10%;
    margin-bottom: 10%;
    width: 35%;
}
.item-icon img {
    width: 100%;
}
.item button {
    border: red solid;
    width: 50%;
    margin: 25%;
}
.sidebar {
    width: 250px;
    border: red solid;
    flex-shrink: 3;
    text-align: center;
}
.sidebar .logo {
    width: 64px;
    margin: auto;
}
.sidebar .logo img {
    width: 64px;
    height: 64px;
}
.overview {
    display: flex;
    flex-direction: row;
    margin: 0px;
}
.sidebar a {
    color: white;
    text-decoration: none;
    /* padding-top: 10px; */
    /* padding-bottom: 0px; */
}