#schedLoginDialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    background-color: #030303;
    z-index: 10000;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    border: 3px solid #555;
    border-radius: 8px;
    font-family: Consolas, monospace;

    display: flex;
    flex-direction: column;
    align-items: center;
}

#schedLoginTitle {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

#schedLoginPasswordInput,
#schedLoginUsernameInput {
    width: 90%;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 800;
    color-scheme: dark;
    padding: 10px;
}

#schedLoginSubmitButton {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 800;
    background-color: #030303;
    border: 3px solid white;
    padding: 10 20 10 20;
    cursor: pointer;
}

#schedLoginSubmitButton:hover {
    background-color: #555;
}
