body {
    color: rgb(232, 230, 227);
    background-image: initial;
    background-color: rgb(62 62 62);
}
  h1 {
    font-size: 1.5em;
  }
  h2 {
    font-size: 1.2em;
  }
  .ccontent {
    display: flex;
    flex-wrap: wrap;
    margin: 10px;
  }

  input::placeholder {
    color: rgb(150, 150, 150);
    font-size: 1.2em;
    font-style: italic;
    text-align: center;
  }

  .cbox {
    margin: 0 auto;
    width: 450px;
    min-height: 150px;
    border: 1px solid #484343;
    padding: 10px;
    line-height: 2;
    margin-bottom: 50px;
  }
  .cdokey {
    display: none;
    background-color: orange;
    color: white;
    font-weight: bold;
    margin: 10px 0;
    padding: 10px;
  }
  .cerror {
    display: none;
    background-color: tomato;
    color: white;
    margin-bottom: 30px;
    width: 450px;
    margin: 0 auto 40px;
    padding: 10px;
  }
  .cdone {
    display: none;
    background-color: darkgreen;
    color: white;
    padding: 10px;
    font-weight: bold;
  }
  .chint {
    max-width: 450px;
    margin-left: 2em;
  }

  .register
  {
    padding: 20px;
}
  }

  input[type=text]:focus {
    width: 100%;
    border: 1px solid #4c4c4c;
  }

  input[type=text]
  {
    transition: width 0.4s ease-in-out;
    width: 100%;
    margin: 10px 0px 10px;
    box-sizing: border-box;
    font-size: 14pt;
    background-color: rgb(38 41 42);
    border: 1px solid #4c4c4c;
    height: 42px;
  }

  .register-body-left
  {
    float: left;
  }

  .register-body-right
  {
    float: right;
  }

  .clear
  {
    clear:both;
  }

  .custom-select {
    position: relative;
    font-family: Arial;
    display: block;
    margin: 0 auto;
    width: 200px;
  }

  .custom-select select {
    display: none; /*hide original SELECT element:*/
  }

  .select-selected {
    background-color: DodgerBlue;
  }

  /*style the arrow inside the select element:*/
  .select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
  }

  /*point the arrow upwards when the select box is open (active):*/
  .select-selected.select-arrow-active:after {
    top: 7px;
  }

  /*style the items (options), including the selected item:*/
  .select-items div,.select-selected {
    color: #ffffff;
    padding: 8px 16px;
    cursor: pointer;
    user-select: none;
  }

  /*style items (options):*/
  .select-items {
    position: absolute;
    background-color: DodgerBlue;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
  }

  /*hide the items when the select box is closed:*/
  .select-hide {
    display: none;
  }

  .select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
  }

  input[type=button], input[type=submit], input[type=reset] {
    background-color: #04AA6D;
    border: none;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    cursor: pointer;
  }