
input[type=text], input[type=email], input[type=number] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 1px solid #555;
  border-radius: 4px;
  outline: none;
}

input[type=text]:focus, input[type=email]:focus, input[type=number]:focus {
  background-color: #945d60;
  color:white;
}

textarea {
  width: 100%;
  height: 150px;
  padding: 12px 20px;
  box-sizing: border-box;
  border: 1px solid #555;
  border-radius: 4px;
  background-color: white;
  outline: none;
  resize: none;
}

textarea:focus {
  background-color: #945d60;
  color:white;
}

select {
  padding: 16px 20px;
  border: none;
  border-radius: 4px;
  background-color: #ebebed;
  color:#2b2b2b;
}

input[type=checkbox] {
         position: relative;
	       cursor: pointer;
    }
    input[type=checkbox]:before {
         content: "";
         display: block;
         position: absolute;
         width: 12px;
         height: 12px;
         top: 0;
         left: 0;
         border: 1px solid #945d60;
         border-radius: 3px;
         background-color: white;
}
    input[type=checkbox]:checked:after {
         content: "";
         display: block;
         width: 5px;
         height: 8px;
         border: solid black;
         border-width: 0 2px 2px 0;
         -webkit-transform: rotate(45deg);
         -ms-transform: rotate(45deg);
         transform: rotate(45deg);
         position: absolute;
         top: 2px;
         left: 4px;
}

input[type=submit], input[type=reset], input[type=button] {
  background-color: #af4605;
  border: none;
  color: white;
  padding: 16px 32px;
  text-decoration: none;
  margin: 4px 2px;
  cursor: pointer;
  font-weight:bolder;
}


.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 15px;
  border-radius: 5px;   
  background: #626e60;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 25px;
  border-radius: 50%; 
  background: #af4605;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 15px;
  border-radius: 50%;
  background: #af4605;
  cursor: pointer;
}