body {
    font-family: "Open Sans", sans-serif;
    font-size: 1.125rem;
    color: #888;
    font-weight: 400;
}

a {
    color: blue;
    text-decoration: underline;
    cursor: pointer;
}

button {
    cursor: pointer;
}

#form {
    text-align: center;
}

#form table {
    margin-left: auto;
    margin-right: auto;
}

#successMessages {
    color: rgb(62, 224, 62);
}

#errorMessages {
    color: rgb(255, 76, 76);
}

#preformattedMessages {
    font-family: monospace;
    /* white-space: pre;*/
}

#copyButton {
    height: 30px;
    width: 35px;
    vertical-align: top;
}



img, button {
    display: none;
}

html {
    background-color: black;
}

@font-face {
    font-family: JetBrainsMonoNerd;
    src: url(/webauthn/static/JetBrainsMonoNLNerdFontMono-Regular.woff2) format(woff2);
}

body {
    font-family: JetBrainsMonoNerd, monospace;
    font-weight: 600;
    display: flex;
    flex-direction: column;
}

#form {
    display: flex;
    gap: 1ch;
    flex-wrap: wrap;
}

input {
    color: white;
    background-color: black;
    outline: none;
    border: none;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    padding: 0;
    margin: 0;
}
