.form {
  max-width: 600px;
  min-height: 48vh;
  margin: 5rem auto;
}
.form fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
.form label {
  display: block;
  font-weight: normal;
  margin-bottom: 0;
  font-size: 1rem;
  font-family: 'Gotham-Bold';
  color: #bfb682;
}
.form .box_input {
  margin-bottom: 1rem;
  position: relative;
}
.form .box_input:after {
  content: "";
  display: block;
  clear: both;
}
.form input[type=search],
.form input[type=text],
.form input[type=password] {
  width: 100%;
  padding: 0.8rem;
  background: transparent;
  border-radius: 0;
  border: 1px #f9f4f2 solid;
  font-size: 0.8rem;
  font-family: 'Gotham-Medium';
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.form input[type=search]:focus,
.form input[type=text]:focus,
.form input[type=password]:focus {
  outline: none;
}
.form legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 0;
  font-size: 1px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border: none;
  opacity: 0;
}
.form .box_select {
  display: block;
  text-align: left;
  position: relative;
}
.form .box_select select {
  width: 100%;
  padding: 0.8rem;
  background: transparent;
  border-radius: 0;
  border: 1px #f9f4f2 solid;
  font-size: 0.8rem;
  font-family: 'Gotham-Medium';
  position: relative;
  z-index: 9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.form .box_select select:focus {
  outline: none;
}
.form .box_select:after {
  content: "\f107";
  width: 1rem;
  height: 1rem;
  display: block;
  position: absolute;
  right: 11px;
  bottom: 0;
  top: 14px;
  margin: auto;
  text-align: center;
  pointer-events: none;
  z-index: 99;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 1.5rem;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #bfb682;
}
.form .box_select select.error {
  border: 1px #e07d7b solid;
  background: transparent;
  color: #e7908e;
}
.form textarea {
  height: 124px;
  width: 100%;
  padding: 0.8rem;
  background: transparent;
  border-radius: 0;
  border: 1px #f9f4f2 solid;
  font-size: 0.8rem;
  font-family: 'Gotham-Medium';
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-appearance: none;
  -moz-appearance: none;
  resize: none;
}
.form textarea:focus {
  outline: none;
}
.form textarea.error {
  border: 1px #e07d7b solid;
  background: transparent;
}
.form textarea.error ~ .error {
  top: 50px;
  bottom: inherit;
}
.form input.error {
  border: 1px #e07d7b solid;
  background: transparent;
}
.form span.error {
  position: absolute;
  z-index: 9;
  right: 0;
  top: 64px;
  padding: 0.5rem;
  color: #ffffff;
  border: 1px #d9534f solid;
  background: #d9534f;
  font-size: 0.8rem;
  border-radius: 0;
  border-bottom: 1px #b52b27 solid;
}
.form span.error:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: -8px;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #d9534f;
}
.form .check_radio {
  width: 48%;
  margin: 1rem 0;
  text-align: left;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.form .check_radio input {
  width: 12.3px;
  height: 12.3px;
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  margin: auto;
  z-index: 9;
  opacity: 0;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.form .check_radio .check_img {
  width: 12px;
  height: 12px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  margin: auto;
  border: 2px #fff solid;
  z-index: 1;
  border-radius: 50%;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-shadow: 0 0 0 2px #bfb682;
}
.form .check_radio input:checked ~ .check_img {
  background-color: #bfb682;
}
.form .check_radio label {
  display: inline-block;
  vertical-align: middle;
  font-size: 0.8rem;
  margin-left: 1.5rem;
  margin-bottom: 0;
}
.form .check_radio span.error {
  width: 100%;
  right: 0;
  left: 0;
  top: 30px;
  margin: auto;
}
@media only screen and (min-width: 34em) {
  .form .check_radio span.error {
    width: 70%;
  }
}
@media only screen and (min-width: 48em) {
  .form .check_radio span.error {
    width: auto;
    right: inherit;
    left: 25px;
    top: 30px;
    bottom: inherit;
  }
}
.form .check_box {
  width: auto;
  margin: 60px 0 30px 0;
  text-align: center;
  position: relative;
}
.form .check_box input {
  height: 20px;
  width: 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  z-index: 9;
  opacity: 0;
  cursor: pointer;
}
.form .check_box .check_img {
  position: relative;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background: #fff;
  border: 2px solid #bfb682;
  display: inline-block;
  vertical-align: middle;
  margin-left: -24px;
  z-index: 1;
}
.form .check_box .check_img:after {
  content: "";
  left: 6px;
  top: 2px;
  width: 3px;
  height: 8px;
  position: absolute;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form .check_box input:checked ~ .check_img:after {
  content: "";
  left: 6px;
  top: 2px;
  width: 3px;
  height: 8px;
  position: absolute;
  border: solid #bfb682;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form .check_box label {
  display: inline-block;
  vertical-align: middle;
  font-size: 0.8rem;
  margin: 4px 0 0 0.5rem;
}
.form .check_box span.error {
  width: 100%;
  right: 0;
  left: 0;
  top: 30px;
  margin: auto;
}
@media only screen and (min-width: 34em) {
  .form .check_box span.error {
    width: 70%;
  }
}
@media only screen and (min-width: 48em) {
  .form .check_box span.error {
    width: inherit;
    right: inherit;
    left: -40px;
    top: 34px;
  }
}
.envio {
  min-height: 300px;
  margin: 5rem auto;
  text-align: center;
}
.envio span {
  display: block;
  margin-bottom: 1rem;
}
.envio h3 {
  font-size: 1.3rem;
}
.envio img {
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}
.bt_form {
  color: #262524;
  font-size: 1.1rem;
  text-transform: uppercase;
  font-family: 'Gotham-Bold';
  padding: 0.3rem 0.5rem;
  position: relative;
  background: url("../imagens/bt_form.svg") right center no-repeat;
  background-size: cover;
}
::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
  font-family: 'Gotham-Medium';
}
:-moz-placeholder {
  color: #fff;
  opacity: 1;
  font-family: 'Gotham-Medium';
}
::-moz-placeholder {
  color: #fff;
  opacity: 1;
  font-family: 'Gotham-Medium';
}
:-ms-input-placeholder {
  color: #fff;
  opacity: 1;
}
:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
}
:focus:-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
}
:focus::-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
}
:focus:-ms-input-placeholder {
  opacity: 0;
  -ms-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
}
