.sc-main {
  

  background-color: transparent;

  height: 100%;

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

  padding-top: 200px;
}

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

  background: #8731D2;
  background: -moz-linear-gradient(top, #8731D2 0%, #DB6BB5 100%);
  background: -webkit-linear-gradient(top, #8731D2 0%, #DB6BB5 100%);
  background: linear-gradient(to bottom, #8731D2 0%, #DB6BB5 100%);
  
  border-radius: 10px;

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

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

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

  width: 450px;
}

.sc-main h2 {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  width: 400px;

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

  display: inline-block;
  padding-top: 30px;
  padding-bottom: 40px;
  color: #00FFFF;
  text-align: center;

  background: url(/assets/image/header/box.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

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

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

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

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

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

  background: white;
  color: #333333;
}

.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 #information-form h4 {
  background: #33D2E3;

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

.sc-main #information-form .input.transparent input {
  color: #001139;
}

@media screen and (max-width: 991px) {
  .sc-main {
    /* background: url(/assets/image/bg-mobile.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: bottom center;
    background-attachment: fixed; */

    background-color: transparent;
  }
}

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

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

    padding-top: 50px;
  }

  .sc-main .logo {
    width: 330px;
   
    -webkit-transform: translate(-50%, -105%);
    -moz-transform: translate(-50%, -105%);
    -ms-transform: translate(-50%, -105%);
    transform: translate(-50%, -105%);
  }

  .sc-main h2 {
    font-size: 22px;

    width: 300px;
    padding-top: 25px;
    padding-bottom: 35px;
  }

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