body {
    background:#000;
    color:#fff;
    font-family:sans-serif;
    display:flex;
    justify-content:center;
    align-items:start;
    margin-top:4rem;
    /*background-image:url('brick-repeat.jpg');*/
    background-image:url('toxic-skull.png');
    background-size: 128px 128px;
    background-repeat:repeat repeat;
}
main {
    background:#000;
    padding:1rem;
    border:2px dotted #808080;
    border-radius:0px;
}
form {
    box-sizing:border-box;
    margin:0;
    padding:0;
}
input {
    box-sizing:border-box;
    border:2px dotted #808080;
    background:none;
    color:#fff;
    max-width:100%;
    width:100%;
    padding:0.5rem;
    margin:0.5rem;
}
input:focus,select:focus,textarea:focus,button:focus {
	outline:none;
}
button:focus,input:hover, input:active {
color:#fff;
border:2px dotted #fff;
}
input:focus {
border:2px solid #fff;
outline-width:0;
}
button {
    background:none;
    border:2px dotted #808080;
    color:#808080;
    width:100%;
    margin:0.5rem;
    padding:0.5rem;
    cursor:pointer;
}
button:hover{
    border:2px dotted #fff;
    text-decoration:underline;
    color:#fff;
}
* {
    font-family:Noto mono,monospace;
    font-weight:bold;
}
h1, button {
    font-size:1.0625rem;
}
h1 {
    margin:0;
    padding:0;
}
#error-text {
    color:#000;
    margin: 0.25rem 0;
    font-size:0.9375rem;
    content:"";
}
.error input {
    border-color:#ff5f5f;
}
.error #error-text {
    color:#ff5f5f;
}
