.button,
input[type='submit'] {
  font-family: 'Roboto';
  display: inline-block;
  position: relative;
  max-width: 100%;
  font-weight: 500;
  font-size: 0.9em;
  letter-spacing: 0.1em;
  line-height: 100%;
  text-align: center;
  color: #000000;
  background: transparent;
  padding: 10px 20px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: normal;
  border: 1px solid #000000;
  outline: none;
  cursor: pointer;
  transition: all 300ms ease;
}
@media screen and (min-width: 1200px) {
  .button,
  input[type='submit'] {
    padding: 10px 30px;
  }
}
.button:hover,
input[type='submit']:hover,
.button:focus,
input[type='submit']:focus {
  color: #FFFFFF;
  background: #000000;
}
.button + .button,
input[type='submit'] + .button {
  margin-left: 10px;
}
input[type='text'],
input[type='number'],
input[type='date'],
input[type='email'],
input[type='password'],
textarea,
select {
  font-family: 'Roboto';
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 100%;
  font-weight: 500;
  font-size: 1em;
  line-height: 100%;
  color: #000000;
  background: transparent;
  padding: 15px;
  white-space: normal;
  border: 1px solid #000000;
  outline: none;
  resize: none;
}
input[type='text']:focus,
input[type='number']:focus,
input[type='date']:focus,
input[type='email']:focus,
input[type='password']:focus,
textarea:focus,
select:focus {
  box-shadow: inset 2px 0 1px #bc936d;
}
textarea {
  display: block;
  line-height: 120%;
  white-space: pre-wrap;
  height: 100px;
  overflow: auto;
  resize: none;
}
select {
  opacity: 0;
}
input[type='checkbox'],
input[type='radio'] {
  position: absolute;
  opacity: 0;
}
input[type='checkbox'] + label,
input[type='radio'] + label {
  display: inline-block;
  position: relative;
  font-weight: 500;
  line-height: 120%;
  padding: 2px 0 0 40px;
  margin-bottom: 10px;
  cursor: pointer;
}
input[type='checkbox'] + label:before,
input[type='radio'] + label:before {
  content: '';
  display: block;
  position: absolute;
  cursor: pointer;
  z-index: 10;
}
input[type='checkbox'] + label:after,
input[type='radio'] + label:after {
  content: '';
  width: 26px;
  height: 26px;
  background: #F5F0EB;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}
input[type='checkbox'] + label:focus:after,
input[type='radio'] + label:focus:after {
  outline: 1px solid #bc936d;
}
input[type='checkbox']:focus + label:after,
input[type='radio']:focus + label:after {
  outline: 1px solid #bc936d;
}
input[type='checkbox'] + label:before {
  width: 5px;
  height: 12px;
  top: 14px;
  left: 5px;
  border-right: 3px solid transparent;
  border-top: 3px solid transparent;
  transform: scaleX(-1) rotate(135deg);
  transform-origin: left top;
}
input[type='checkbox']:checked + label:before {
  border-color: #000000;
}
input[type='checkbox']:checked + label:after {
  background: #F5F0EB;
}
input[type='radio'] + label:before {
  width: 8px;
  height: 8px;
  top: 9px;
  left: 9px;
  border-radius: 50%;
}
input[type='radio']:checked + label:before {
  background: #000000;
}
input[type='radio']:checked + label:after {
  background: #F5F0EB;
}
input[type='radio'] + label:after {
  border-radius: 50%;
}
::-webkit-input-placeholder {
  color: #000000;
  font-weight: 400;
  font-style: normal;
  opacity: 0.4;
}
:-moz-placeholder {
  color: #000000;
  font-weight: 400;
  font-style: normal;
  opacity: 0.4;
}
::-moz-placeholder {
  color: #000000;
  font-weight: 400;
  font-style: normal;
  opacity: 0.4;
}
:-ms-input-placeholder {
  color: #000000;
  font-weight: 400;
  font-style: normal;
  opacity: 0.4;
}
