html {
     min-width: unset;
}

body {
     min-height: 100vh;
     display: flow-root;
     min-width: unset;
     background-image: url('stable/img/blueprint.jpg');
}

#form {
     width: 80%;
     height: 70%;
     margin: 0 auto;
     padding: 1.25rem;
     background-color: rgba(255, 255, 255, 0.65);
     color: #000;
     position: relative;
     border-bottom: 7px solid #fcad00;
     border-radius: 20px 20px 0 0;
     overflow: hidden;
}

input[type=text], input[type=password] {
     border: 1px solid white;
     border-radius: 20px;
     width: 70%;
     max-width: 400px;
     margin: 10px;
     padding: 3px 6px;
     text-align: center;
     font-size: 20px;
}

input[type=submit]{
     width: 80%;
     max-width: 400px;
     margin: 20px auto 70px auto;
     padding: .5em 1em;
     text-align: center;
     background-color: #fcad00;
     font-size: 1rem;
     border: none;
     border-radius: 9999px;
     color: white;
     cursor: pointer;
}

input[type=submit]:hover{
     background-color: #ff9100;
}

#register{
     color:white;
     text-decoration:none;
     display: block;
     width: 180px;
     background-color: rgb(50, 173, 81);
     border: 3px solid rgb(50, 173, 81);
     margin: 0 auto 0 auto;
     padding: 3px 6px;
     border-radius: 20px;
     height: 73px;
     text-align: center;
     line-height: 52px;
     position: absolute;
     box-sizing: border-box;
     bottom: -18px;
     left: calc(50% - 90px);
}

#register:hover{
     background-color: rgb(107, 192, 85);
     border: 3px solid white;
}

.error {
     color: red;
     margin-top: 10px;
     margin-bottom: 10px;
}

.login_err{
     color: red;
     position: relative;
     top: -80px;
}

#terms{
     color: darkcyan;
     text-decoration: underline darkcyan;
}