* {
    box-sizing:border-box;
  }
  
  body {
    margin: 0;
    background-color: aliceblue;
  }
  
  button {
      background-color: #3498DB;
      color: white;
      padding: 5px;
      border: none;
      width: 160px;
      font-size: 14px;
  }
  button:hover, button:focus {
              background-color: #2980B9;
            }
  
  input[type=text], input[type=password], input[type=email], input[type=tel], input[type=date], select, list {
    width: 160px;
    padding: 5px;
    margin: 2px 0;
    display:list-item;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: mistyrose;
    box-sizing: border-box;
  }
  input {
    width: 160px;
    padding: 5px;
    margin: 2px 0;
    display:list-item;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: mistyrose;
    box-sizing: border-box;
  }
  
  input[type=submit] {
    width: 100px;
    background-color: violet;
    color: black;
    padding: 5px;
    margin: 8px 0;
    border: none;
    border-radius: 10px;
    cursor: pointer;
  }
  
  input[type=submit]:hover {
              background-color: mediumorchid;
            }
  
  input[type=submit]:active {
      background-color: darkviolet;
  }
  
  #money {
    width: 80px;
}
  
  /* Style the header */
.header {
    background-color: #f1f1f1;
    padding: 10px;
    text-align: center;
  }

  /* Create three unequal columns that floats next to each other */
.column {
    float: left;
    padding: 10px;
  }
  
  /* Left and right column */
  .column.side {
    width: 35%;
  }
  
  /* Middle column */
  .column.middle {
    width: 65%;
    text-align: justify;
  }
  
  /* Clear floats after the columns */
  .row::after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 600px) {
    .column.side, .column.middle {
      width: 100%;
    }
  }
  