* {
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: inherit;
}

body {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  padding: 0;
}

h1 {
  text-align: center;
  color: #a83b23;
  margin: 0 0 20px 0;
}

form {
  max-width: 400px;
  margin: 0 auto;
  position: relative;
  min-height: 480px;
}

input {
  display: block;
  width: 100%;
  height: 35px;
  font-size: 18px;
  padding: 4px;
  color: #25252B;
  border-style: solid;
  border-width: 1px;
}

input:focus {
  outline-style: solid;
  outline-color: #0C91AE;
  border-width: 1px;
  border-color: #0C91AE;
}

button {
  height: 45px;
  font-size: 20px;
}

button:enabled {
  cursor: pointer;
}

.container {
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
}


#next,
#submit,
.step-1,
.step-2 {
  position: absolute;
}

.step-1,
.step-2 {
  width: 100%;
}

.step-2,
#submit {
  display: none;
  z-index: -99999;
}

#next,
#submit {
  bottom: 0;
  right: 0;
}

#submit {
  margin-top: 20px;
}

.no-select {
   user-select: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.directions {
  display: none;

}

.form-input {
  padding: 10px 0;
}

.tox-tinymce {
  margin-top: 20px;
}

.required {
  color: #a83b23;
}

.reset-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

::placeholder {
  color: #bbbbbb;
}