.sc-main {
  height: 100%;

  display: flex;
  flex-direction: row;
  justify-content: center;

  padding-top: 240px;
}

.sc-main .box {
  position: relative;
  width: 600px;
  padding: 40px 20px 30px 20px;

  background: transparent;
  border: none;

  margin-left: auto;
  margin-right: auto;
}

.sc-main .logo {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;

  -webkit-transform: translate(-50%, -170%);
  -moz-transform: translate(-50%, -170%);
  -ms-transform: translate(-50%, -170%);
  transform: translate(-50%, -170%);

  width: 338px;
}

.sc-main h2 {
  top: 0;
  left: 50%;
  z-index: 10;
  position: absolute;
  white-space: nowrap;

  width: 230px;
  height: 50px;

  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);

  border: solid 2px white;
  border-radius: 25px;
  /* padding: 5px 55px; */
  display: inline-block;

  background: #7A5820;
  background: -moz-linear-gradient(180deg, #7A5820 0%, #C19E3F 80%);
  background: -webkit-linear-gradient(180deg, #7A5820 0%, #C19E3F 80%);
  background: linear-gradient(180deg, #7A5820 0%, #C19E3F 80%);
}

.sc-main h2 span {
  position: absolute;
  z-index: 1;

  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.sc-main h2 img {
  position: absolute;
  z-index: 0;

  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.sc-main h3 {
  margin-bottom: 15px;
}

.sc-main .action {
  margin-top: 30px;
}

.sc-main .input {
  max-width: 500px;
  margin-top: 15px;
}

.sc-main .input input {
  padding-top: 10px;
  padding-top: 10px;

  border: solid 1px white;
  border-radius: 0;

  background: white;
  color: #333333;
  font-size:15px;
}

.sc-main .input input::placeholder {
  color: #CCCCCC;
  opacity: 1;
}

.sc-main .input input:-ms-input-placeholder {
  color: #CCCCCC;
}

.sc-main .input input::-ms-input-placeholder {
  color: #CCCCCC;
}

.sc-main .input .select2-selection {
  border-radius: 0;
  border-color: white;
  border-width: 0 0 1px 0;

  background: transparent;
}

.sc-main .input .select2-selection .select2-selection__arrow b:before {
  color: white;
}

.sc-main .input .select2-selection span {
  /* font-size: 13px; */
  color: white;
}

.sc-main .input .select2-container--open .select2-selection {
  background: white;
}

.sc-main .input .select2-container--open .select2-selection .select2-selection__arrow b:before {
  color: black;
}

.sc-main .input .select2-container--open .select2-selection span,
.select2-container--open .select2-dropdown li span {
  font-size: 14px;
  color: black;
}

.sc-main .input .select2-selection span img,
.sc-main .select2-dropdown li span img {
  width: 20px;
  margin-right: 10px;
}

.sc-main .input.transparent input {
  background: transparent;
  border-radius: 0;
  border-bottom: solid 1px white;
  border-width: 0 0 1px 0;

  color: white;
}

.sc-main .input.transparent input::placeholder {
  color: white;
}

.sc-main .input.transparent input:-ms-input-placeholder {
  color: white;
}

.sc-main .input.transparent input::-ms-input-placeholder {
  color: white;
}

.sc-main .input.transparent .select2-selection {
  border: none;
  border-bottom: solid 1px white;
  border-radius: 0;
  background: transparent;
}

.sc-main .input.transparent .select2-selection .select2-selection__arrow b:before {
  color: white;
}

.sc-main .input.transparent .select2-selection span  {
  color: white;
}

.sc-main .box h4,
.sc-main #information-form h4 {
  background: #7A5820;
  background: -moz-linear-gradient(180deg, #7A5820 0%, #C19E3F 150%);
  background: -webkit-linear-gradient(180deg, #7A5820 0%, #C19E3F 150%);
  background: linear-gradient(180deg, #7A5820 0%, #C19E3F 150%);

  border: none;

  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .sc-main {
    padding-top: 200px;
  }

  .sc-main .logo {
    -webkit-transform: translate(-50%, -160%);
    -moz-transform: translate(-50%, -160%);
    -ms-transform: translate(-50%, -160%);
    transform: translate(-50%, -160%);
  }

  .sc-main .box {
    width: 100%;
  }

  .sc-main h2 {
    font-size: 20px;
  }

  .sc-main h3 {
    font-size: 18px;
  }
}

@media screen and (max-width: 400px) {
  .sc-main {
    padding-top: 200px;
  }

  .sc-main .logo {
    width: 280px;
  }
} 