* {
    box-sizing: border-box;
}

body {
    font-family: monospace;
    font-size: 1rem;
    text-align: center;
    /*         white-space: pre-wrap; */
}

#clearAndReRegister {
    float: right;
    position: fixed;
    top: 5pt;
    right: 5pt;
    margin: 0;
    padding: 3pt 5pt;
    background-color: white;
    color: dodgerblue;
    border: 1px solid dodgerblue;
    border-radius: 5pt;
}

.autocomplete {
    position: relative;
    display: inline-block;
}

.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 0;
    right: 0;
}

.autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4;
    text-align: left;
}

/*when hovering an item:*/

.autocomplete-items div:hover {
    background-color: #e9e9e9;
}

/*when navigating through the items using the arrow keys:*/

.autocomplete-active {
    background-color: DodgerBlue !important;
    color: #ffffff;
}

input {
    font-size: 16px;
    /*         width: 80vw; */
    margin: 30pt auto 0 auto;
    display: inline-block;
    padding: 10pt;
    border: 1px solid transparent;
    background-color: #f1f1f1;
}

input[type=text] {
    background-color: #f1f1f1;
    width: 65vw;
}

input[type=submit],
input[type=button] {
    background-color: DodgerBlue;
    color: #fff;
    cursor: pointer;
}