/* Style of Register page */
body {
  background-color: #ededed;
  font-family: "Noto Sans Thai", sans-serif;
}

.register-body .logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  padding-top: 60px;
}

.register-body .logo img {
  width: 275px;
}

.register-body .logo .logo-title {
  margin-top: 20px;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}

.register-form {
  margin-top: 45px;
}

.register-form .form-group {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  justify-content: center;
}

.register-form .group-right {
  justify-content: right;
}

.register-form .group-left {
  justify-content: left;
}

.register-form .form-control {
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0.125rem 0.25rem 0 rgba(0, 0, 0, 0.25) inset;
  border: 0.0625rem solid #dcdfe6;
  height: 40px;
  padding: 0px 15px;
}

.register-form .form-control::placeholder {
  color: #ccc;
}

.register-form .btn-otp {
  border-radius: 6.25rem;
  background: linear-gradient(0deg, #ff7800 0, #ff7800 100%), #893027;
  box-shadow: 0 0.25rem 1.5rem 0 rgba(204, 100, 6, 0.3);
  color: #fff;
  display: inline-block;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  border: 0.0625rem solid #dcdfe6;
  text-align: center;
  box-sizing: border-box;
  outline: 0;
  margin: 0;
  transition: 0.1s;
  font-weight: 500;
  padding: 12px 18px;
}

.register-form .btn-register {
  border-radius: 6.25rem;
  background-color: #ff7800;
  color: #fff;
  display: inline-block;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  border: 0.0625rem solid #dcdfe6;
  text-align: center;
  box-sizing: border-box;
  outline: 0;
  margin-top: 23px;
  margin-bottom: 10px;
  transition: 0.1s;
  font-weight: 400;
  padding: 14px 35px;
  font-size: 22px;
}

.register-form .form-group > img {
  margin-right: 10px;
}

.register-form .otp-input {
  width: 210px;
  margin-right: 10px;
}

.register-form .own-group {
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 25px;
}

.register-form .radio-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px 40px;
  font-weight: normal;
  cursor: pointer;
}

.register-form .radio-regis {
  width: 24px;
  height: 24px;
  margin: 0px 8px 0px 0px;
  cursor: pointer;
}

.register-form .radio-confirm {
  margin: 0px 20px;
  color: #ff9900;
}

@media (max-width: 767px) {
  .register-body .logo .logo-title {
    font-size: 22px;
    margin-top: 10px;
  }

  .register-form .group-right,
  .register-form .group-left {
    justify-content: center;
  }

  .register-form .form-group > img {
    display: none;
  }

  .register-form .form-control {
    width: 100% !important;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 500px;
  }
}
