.flex-container-header {
  display: flex;
  background-color: #8224e3;
}

.flex-container-header > div {
  display: flex;
  background-color: #452253;
  margin: 10px;
  padding: 10px;
  width: 100%;
}

.flex-container-header > div > h1 {
  color: white;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.flex-container-header > div > h2 {
  color: white;
  margin-left: 0.5rem;
}


.flex-container {
  display: flex;
  background-color: #452253;
}

.flex-container > div > h1 {
  display: inline-block;
}


.flex-container-nav {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 15rem;
  background-color: #8224e3;
  justify-content: flex-start;
}

.flex-container-main {
  display: flex;
  background-color: #452253;
  flex-direction: row;
}

.flex-container-content {
  display: flex;
  background-color: #bebebe;
  margin: 1rem;
  width: 100%;
  padding: 1rem;
}


.flex-container-footer {
  display: flex;
  background-color: #8224e3;
}

.flex-container-footer > div {
  display: inline-block;
  background-color: #452253;
  margin: 10px;
  padding: 3px;
  width: 100%;
}

.flex-container-footer > div > p {
  display: flex;
  font-size: .7rem;
  color: white;
  margin-left: 1rem;
}

.flex-container-footer > div > p > a {
  color: white;
}

.button {
  background-color: #452253;
  border: none;
  border-radius: .5rem;
  color: white;
  padding: 15px 15px;
  margin: .5rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
  width: 8rem;
}

.button-nav {
  background-color: #452253;
  border: none;
  border-radius: .5rem;
  color: white;
  padding: 15px 15px;
  margin: .5rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
  width: 8rem;
}

form {
  padding: 1em;
  background: #f9f9f9;
  border: 1px solid black;
  margin-top: 2rem;
  margin-bottom: 2rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

form input {
  margin-bottom: 1rem;
  background: white;
  border: 1px solid #9c9c9c;
  text-align: right;
}

form label {
  text-align: left;
  display: block;
}

form textarea {
  text-align: right;
}

form div {
  text-align: center;
}

input:focus {
  background-color: lightgrey;
}

input[type="button"], input[type="reset"], input[type="submit"] {
  background: lightgray;
  padding: 0.7em;
  border: 0;
}


fieldset {
      overflow: hidden
    }
    
    .some-class {
      float: left;
      clear: none;
    }
    
  .some-class div {
      float: left;
      clear: none;
      display: inline;
    }

    label {
      float: left;
      clear: none;
      display: block;
      padding: 0px 1em 0px 8px;
    }
    
    input[type=text],
    input.text {
      float: left;
      clear: none;
      margin: 2px 0 0 2px;
    }

    input[type=radio],
    input.radio {
      float: left;
      clear: none;
      margin: 2px 0 0 2px;
    }

    input[type=checkbox],
    input.checkbox {
      float: left;
      clear: none;
      margin: 2px 0 0 2px;

    }

.myinput {
  width: 100%;
  padding: 0.7em;
  margin-bottom: 0.5rem;
}

.myInput2 {
  width: 4em;
  resize: none;  
}

.myinput3 {
  width: auto;
  padding: 0.7em;
  margin-bottom: 0.5rem;
  display: flex;
}

.myResult {
  width: 100%;
  resize: none;  
}

.myResult2 {
  width: 4em;
  resize: none;
  text-align: right;
}

.myResult3 {
  width: 6em;
  resize: none;
  text-align: right;
}

.myLabel {
  text-align: right;
  display: inline-block;
  padding: 0.5em 1em 0.5em 0;
}

.errorBlock {
  color: red;
}

.msgBlock {
  color: green;
}
/*Remove Arrows/Spinners from webkit browsers*/
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}