.th-register-wrap {
    position: relative;
    padding: 100px 0;
    text-align: center;
  }
  .th-register-wrap::before {
    position: absolute;
    content: "";
    width: 390px;
    height: 540px;
    background-image: url(../images/round-icon2.png);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 100%;
    left: 0;
    top: 70px;
    z-index: -1;
    animation: round 4000ms;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
  }
  @keyframes round {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }
  .th-register-wrap h4 {
    margin-bottom: 30px;
  }
  .th-register-form {
    box-shadow: 0 0 10px 0 rgba(72, 117, 217, 0.5);
    background-color: #ffffff;
    padding: 47px 40px 48px;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
  }
  .th-register-form ul li {
    margin-bottom: 15px;
  }
  .th-register-form ul li span {
    margin-right: 20px;
  }
  .th-register-form ul li:last-child {
    margin-bottom: 0;
  }
  .th-register-form label {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
  }
  .th-register-form label strong {
    color: #ff0000;
    font-weight: 400;
  }
  .th-register-form label.th-radio-label {
    display: inline-block;
    text-transform: none;
    margin-top: 0px;
    vertical-align: top;
    margin-left: 2px;
  }
  .th-register-form input[type="text"],
  .th-register-form input[type="email"],
  .th-register-form input[type="tel"],
  .th-register-form input[type="password"] {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    color: #000000;
    padding: 9px 12px;
    width: 100%;
    height: 43px;
    outline: none;
    background-color: #ffffff;
    border: 1px solid #414141;
    box-shadow: 0 0 6px 0 rgba(72, 117, 217, 0.35);
  }
  .th-register-form .th-check {
    position: relative;
    cursor: pointer;
    font-weight: 400;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    text-transform: none;
    display: inline-block;
  }
  .th-register-form .th-check input {
    position: absolute;
    z-index: -1;
    opacity: 0;
  }
  .th-register-form .th-check .checkmark {
    display: inline-block;
    top: 4px;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #4875d9;
    border-radius: 2px;
    margin-right: 5px;
    position: relative;
  }
  .th-register-form .th-check .checkmark::after {
    left: 6px;
    top: 0;
    width: 5px;
    height: 13px;
    border: solid #4875d9;
    border-width: 0 2px 2px 0;
    transform: rotate(35deg);
    content: "";
    position: absolute;
    display: none;
  }
  .th-register-form .th-check input:checked ~ .checkmark::after {
    display: block;
  }
  .th-register-form .th-submit-btn {
    margin: 30px auto 0;
  }
  .th-register-form p {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 0;
  }
  .th-register-form p a:hover {
    color: #000000;
  }
  
  @media only screen and (max-width: 1200px) {
    .th-register-wrap {
      padding: 80px 0;
    }
    .th-register-form label {
      font-size: 17px;
    }
    .th-register-form .th-check {
      font-size: 17px;
    }
    .th-register-wrap::before {
      width: 291px;
      height: 405px;
      top: 26px;
    }
  }
  @media only screen and (max-width: 991px) {
    .th-register-wrap {
      padding: 60px 0 65px;
    }
    .th-register-wrap::before {
      width: 230px;
      height: 321px;
    }
  }
  @media only screen and (max-width: 767px) {
    .th-register-form {
      padding: 40px 30px 40px;
    }
    .th-register-wrap {
      padding: 50px 0 55px;
    }
    .th-register-wrap h4 {
      margin-bottom: 25px;
    }
    .th-register-form label {
      font-size: 16px;
    }
    .th-register-form .th-check {
      font-size: 16px;
    }
    .th-register-form label.th-radio-label {
      margin-top: 2px;
    }
  }
  @media only screen and (max-width: 600px) {
    .th-register-form {
      padding: 40px 20px 40px;
    }
    .th-register-form ul li span {
      margin-right: 17px;
      display: inline-block;
    }
  }
  @media only screen and (max-width: 500px) {
    .th-register-wrap h4 {
      margin-bottom: 20px;
    }
    .th-register-wrap {
      padding: 40px 0 45px;
    }
    .th-register-form {
      padding: 30px 12px 30px;
    }
    .th-register-form label {
      font-size: 15px;
    }
    .th-register-form input[type="text"],
    .th-register-form input[type="email"],
    .th-register-form input[type="tel"],
    .th-register-form input[type="password"] {
      font-size: 15px;
    }
    .th-register-form .th-check {
      font-size: 15px;
    }
    .th-register-wrap::before {
      width: 180px;
      height: 250px;
    }
  }
  