#panel {
    min-width: 300px;
    max-width: 700px;
    width: 100%;
    height: auto;
    padding: 10px;
    margin: 0 auto;
    margin-top: 10px;

    flex-direction: column;
    gap: 5px;

    border: 1px solid rgb(55, 55, 55);
    border-radius: 5px;
}

#panel > .page-title {
    width: 100%;
    height: 50px;

    align-items: center;
    justify-content: center;

    font-size: 34px;
    font-weight: 500;
    color: #DDD;
}



#panel > .creds {
    width: 100%;
    height: auto;
    padding: 0 5px;

    flex-direction: column;
    gap: 2px;
}

#panel > .creds > .title {
    width: 100%;
    height: auto;
    /* margin-bottom: 5px; */

    align-items: center;
    justify-content: left;

    font-size: 30px;
    font-weight: 500;
    color: #FFF;
}

#panel > .creds > input {
    width: 100%;
    height: auto;
    padding: 4px 5px;

    align-items: center;
    justify-content: left;

    background-color: rgb(33, 33, 33);
    border: 1px solid rgb(55, 55, 55);
    border-radius: 5px;
    outline: none;

    font-size: 20px;
    font-weight: 300;
    color: #FFF
}

/* #panel > .creds > input:-webkit-autofill,
#panel > .creds > input:-webkit-autofill:focus {
    background-color: rgb(22, 22, 22) !important;
    transition-delay: calc(infinity * 1s);
    padding: 0px !important;
    padding-block: 0px !important;
    padding-inline: 0px !important;
} */

#panel > .creds > .error {
    width: 100%;
    height: auto;

    transition: opacity 0.05s ease-in-out;
    opacity: 0;

    align-items: center;
    justify-content: left;

    font-size: 16px;
    font-weight: 200;
    color: rgb(229, 9, 20);
}
#panel > .creds > .error[active = "true"] {opacity: 1}


#panel > .reminder {
    width: 100%;
    height: auto;
    padding: 0 5px;

    align-items: center;

    font-size: 16px;
    font-weight: 300;
    color: #EEE;

    white-space: pre;
}
#panel > .reminder > a {
    font-size: 16px;
    font-weight: 300;
    color: purple;
}



#panel > .button {
    width: min-content;
    height: auto;
    padding: 5px 20px;
    margin: 0 auto;
    margin-top: 5px;

    transition: all 0.1s ease-in-out;
    background-color: rgb(88, 177, 91, 0.6);
    border-radius: 5px;

    pointer-events: none;
    cursor: pointer;

    font-size: 27px;
    font-weight: 400;
    color: #AAA;
}
#panel > .button[active = "true"] {
    pointer-events: all;
    background-color: rgb(88, 177, 91);
    color: #FFF;
}
#panel > .button:active {opacity: 0.9}
#panel > .button[active = "false"] {opacity: 0}


#panel > .error {
    width: 100%;
    height: auto;
    margin: 2px 0;

    align-items: center;
    justify-content: center;

    font-size: 16px;
    font-weight: 200;
    color: rgb(229, 9, 20);
}