/* ---------------register-section START--------------- */
.register-section.active .register-wrap .form-wrap {
  opacity: 1;
}
.register-section .register-wrap .form-wrap {
  opacity: 0;
  transition: opacity 1s;
  transition-delay: 0.3s;
}
.register-section .register-wrap .form-wrap form {
  display: block;
}
.register-section .register-wrap .form-wrap .terms-list > .list-item:not(:nth-of-type(1)) {
  box-sizing: border-box;
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid #eee;
}
.register-section .register-wrap .form-wrap .terms-list > .list-item .content-box {
  margin-bottom: 25px;
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 15px;
  padding: 25px;
  max-height: 300px;
  overflow-y: auto;
}
.register-section .register-wrap .form-wrap .terms-list > .list-item .content-box::-webkit-scrollbar {
  width: 5px;
}
.register-section .register-wrap .form-wrap .terms-list > .list-item .content-box::-webkit-scrollbar-thumb {
  background-color: #4b8c2f;
  border-radius: 5px;
}
.register-section .register-wrap .form-wrap .terms-list > .list-item .content-box::-webkit-scrollbar-track {
  background-color: rgba(75, 140, 47, 0.25);
  border-radius: 5px;
}
.register-section .register-wrap .form-wrap .terms-list > .list-item .content-box .intro-text {
  line-height: 1.5;
}
.register-section .register-wrap .form-wrap .terms-list > .list-item .content-box .content-text {
  line-height: 1.5;
}
.register-section .register-wrap .form-wrap .btn-terms-check {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
.register-section .register-wrap .form-wrap .btn-terms-check .input-check:checked + .check-inner .square {
  background-color: #389311;
  border-color: #389311;
}
.register-section .register-wrap .form-wrap .btn-terms-check .input-check:checked + .check-inner .icon {
  opacity: 1;
  color: #fff;
}
.register-section .register-wrap .form-wrap .btn-terms-check .check-inner {
  display: flex;
  align-items: center;
  gap: 7px;
}
.register-section .register-wrap .form-wrap .btn-terms-check .check-inner .square {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  transition: background-color 0.3s, border-color 0.3s;
}
.register-section .register-wrap .form-wrap .btn-terms-check .check-inner .square .icon {
  opacity: 0;
  font-size: 0.85em;
  transition: color 0.3s, opacity 0.3s;
}
.register-section .register-wrap .form-wrap .all-check-box {
  box-sizing: border-box;
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid #eee;
}
.register-section .register-wrap .form-wrap .register-btn-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.register-section .register-wrap .form-wrap .register-btn-box a, .register-section .register-wrap .form-wrap .register-btn-box button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 150px;
  height: 50px;
  border-radius: 15px;
  color: #fff;
  transition: background-color 0.3s;
}
.register-section .register-wrap .form-wrap .register-btn-box a.btn-submit, .register-section .register-wrap .form-wrap .register-btn-box button.btn-submit {
  background-color: #389311;
}
.register-section .register-wrap .form-wrap .register-btn-box a.btn-cancel, .register-section .register-wrap .form-wrap .register-btn-box button.btn-cancel {
  background-color: #555;
}

/* ---------------register-section END--------------- */
/* ---------------register-form-section START--------------- */
.register-form-section.active .register-form-wrap .form-wrap {
  opacity: 1;
}
.register-form-section .register-form-wrap .form-wrap {
  opacity: 0;
  transition: opacity 1s;
  transition-delay: 0.3s;
}
.register-form-section .register-form-wrap .form-wrap form {
  display: block;
}
.register-form-section .register-form-wrap .form-wrap .register-box .form-inner {
  display: flex;
  gap: 30px;
}
.register-form-section .register-form-wrap .form-wrap .register-box .form-inner .form-box {
  width: calc((100% - 30px) / 2);
}
.register-form-section .register-form-wrap .form-wrap .register-box .form-inner .form-box + .form-box {
  margin-top: unset;
}
.register-form-section .register-form-wrap .form-wrap .register-box .form-inner + .form-inner {
  margin-top: 30px;
}
.register-form-section .register-form-wrap .form-wrap .register-box .form-box + .form-inner {
  margin-top: 30px;
}
.register-form-section .register-form-wrap .form-wrap .register-box .form-inner + .form-box {
  margin-top: 30px;
}
.register-form-section .register-form-wrap .form-wrap .register-box .form-box + .form-box {
  margin-top: 30px;
}
.register-form-section .register-form-wrap .form-wrap .register-box .form-box {
  width: 100%;
}
.register-form-section .register-form-wrap .form-wrap .register-box .form-box .label {
  display: block;
  font-size: inherit;
  margin-bottom: 10px;
}
.register-form-section .register-form-wrap .form-wrap .register-box .form-box .input-text {
  display: block;
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: inherit;
  font-weight: 400;
  transition: border-color 0.3s;
}
.register-form-section .register-form-wrap .form-wrap .register-box .form-box .input-text.readonly {
  opacity: 0.5;
  pointer-events: none;
}
.register-form-section .register-form-wrap .form-wrap .register-box .form-box .input-text:focus {
  border-color: #389311;
}
.register-form-section .register-form-wrap .form-wrap .register-box .form-box .input-text {
  width: 100%;
  height: 50px;
  padding: 0 20px;
}
.register-form-section .register-form-wrap .form-wrap .register-box .form-box .etc-text,
.register-form-section .register-form-wrap .form-wrap .register-box .form-box .msg-text {
  display: block;
  font-size: 0.75em;
  line-height: 1.5;
  margin-top: 7px;
}
.register-form-section .register-form-wrap .form-wrap .register-box .captcha-box {
  margin-top: 30px;
}
.register-form-section .register-form-wrap .form-wrap .register-box .captcha-box #captcha {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.register-form-section .register-form-wrap .form-wrap .register-box .captcha-box #captcha.m_captcha audio {
  display: none;
}
.register-form-section .register-form-wrap .form-wrap .register-box .captcha-box #captcha.m_captcha #captcha_img {
  width: auto;
  height: 40px;
  margin: unset;
}
.register-form-section .register-form-wrap .form-wrap .register-box .captcha-box #captcha.m_captcha #captcha_key {
  background: #fff;
  line-height: unset;
  height: 40px;
}
.register-form-section .register-form-wrap .form-wrap .register-box .captcha-box #captcha #captcha_img {
  box-sizing: border-box;
  border: 1px solid #ddd;
}
.register-form-section .register-form-wrap .form-wrap .register-box .captcha-box #captcha #captcha_key {
  width: 120px;
  margin: unset;
  padding: 0 10px;
  border: 1px solid #ddd;
  font-size: inherit;
  border-radius: unset;
}
.register-form-section .register-form-wrap .form-wrap .register-box .captcha-box #captcha #captcha_info {
  width: 100%;
  font-size: 0.75em;
  margin: unset;
  letter-spacing: unset;
}
.register-form-section .register-form-wrap .form-wrap .register-box + .register-box {
  box-sizing: border-box;
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid #eee;
}
.register-form-section .register-form-wrap .form-wrap .register-btn-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.register-form-section .register-form-wrap .form-wrap .register-btn-box a, .register-form-section .register-form-wrap .form-wrap .register-btn-box button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 150px;
  height: 50px;
  border-radius: 15px;
  color: #fff;
  transition: background-color 0.3s;
}
.register-form-section .register-form-wrap .form-wrap .register-btn-box a.btn-submit, .register-form-section .register-form-wrap .form-wrap .register-btn-box button.btn-submit {
  background-color: #389311;
}
.register-form-section .register-form-wrap .form-wrap .register-btn-box a.btn-cancel, .register-form-section .register-form-wrap .form-wrap .register-btn-box button.btn-cancel {
  background-color: #555;
}

/* ---------------register-form-section END--------------- */
/* ---------------register-result-section START--------------- */
.register-result-section.active .register-result-wrap .result-box {
  opacity: 1;
}
.register-result-section.active .register-result-wrap .register-btn-box {
  opacity: 1;
}
.register-result-section .register-result-wrap .result-box {
  opacity: 0;
  transition: opacity 1s;
  transition-delay: 0.3s;
}
.register-result-section .register-result-wrap .result-box .title {
  line-height: 1.3;
}
.register-result-section .register-result-wrap .result-box .desc {
  line-height: 1.5;
}
.register-result-section .register-result-wrap .register-btn-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transition: opacity 1s;
  transition-delay: 0.3s;
}
.register-result-section .register-result-wrap .register-btn-box a, .register-result-section .register-result-wrap .register-btn-box button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 150px;
  height: 50px;
  border-radius: 15px;
  color: #fff;
  transition: background-color 0.3s;
}
.register-result-section .register-result-wrap .register-btn-box a.btn-submit, .register-result-section .register-result-wrap .register-btn-box button.btn-submit {
  background-color: #389311;
}

/* ---------------register-result-section END--------------- */
/* ---------------media screen START--------------- */
@media screen and (min-width: 991.1px) {
  /* ---------------register-section START--------------- */
  .register-section .register-wrap .form-wrap .btn-terms-check:hover .check-inner .icon {
    opacity: 1;
  }
  .register-section .register-wrap .form-wrap .register-btn-box a.btn-submit:hover, .register-section .register-wrap .form-wrap .register-btn-box button.btn-submit:hover {
    background-color: #256908;
  }
  .register-section .register-wrap .form-wrap .register-btn-box a.btn-cancel:hover, .register-section .register-wrap .form-wrap .register-btn-box button.btn-cancel:hover {
    background-color: #333;
  }
  /* ---------------register-section END--------------- */
  /* ---------------register-form-section START--------------- */
  .register-form-section .register-form-wrap .form-wrap .register-box .form-box .input-text:hover {
    border-color: #389311;
  }
  .register-form-section .register-form-wrap .form-wrap .register-btn-box a.btn-submit:hover, .register-form-section .register-form-wrap .form-wrap .register-btn-box button.btn-submit:hover {
    background-color: #256908;
  }
  .register-form-section .register-form-wrap .form-wrap .register-btn-box a.btn-cancel:hover, .register-form-section .register-form-wrap .form-wrap .register-btn-box button.btn-cancel:hover {
    background-color: #333;
  }
  /* ---------------register-form-section END--------------- */
  /* ---------------register-result-section START--------------- */
  .register-result-section .register-result-wrap .register-btn-box a.btn-submit:hover, .register-result-section .register-result-wrap .register-btn-box button.btn-submit:hover {
    background-color: #256908;
  }
  /* ---------------register-result-section END--------------- */
}
@media screen and (max-width: 1350px) {
  /* ---------------register-section START--------------- */
  .register-section .register-wrap .form-wrap .terms-list > .list-item:not(:nth-of-type(1)) {
    margin-top: 45px;
    padding-top: 45px;
  }
  .register-section .register-wrap .form-wrap .terms-list > .list-item .content-box {
    margin-bottom: 23px;
    border-radius: 14px;
    padding: 23px;
    max-height: 270px;
  }
  .register-section .register-wrap .form-wrap .all-check-box {
    margin-top: 45px;
    padding-top: 45px;
  }
  .register-section .register-wrap .form-wrap .register-btn-box {
    gap: 14px;
  }
  .register-section .register-wrap .form-wrap .register-btn-box a, .register-section .register-wrap .form-wrap .register-btn-box button {
    width: 135px;
    height: 45px;
    border-radius: 14px;
  }
  /* ---------------register-section END--------------- */
  /* ---------------register-form-section START--------------- */
  .register-form-section .register-form-wrap .form-wrap .register-box .form-inner {
    gap: 28px;
  }
  .register-form-section .register-form-wrap .form-wrap .register-box .form-inner .form-box {
    width: calc((100% - 28px) / 2);
  }
  .register-form-section .register-form-wrap .form-wrap .register-box .form-inner + .form-inner {
    margin-top: 28px;
  }
  .register-form-section .register-form-wrap .form-wrap .register-box .form-box + .form-inner {
    margin-top: 28px;
  }
  .register-form-section .register-form-wrap .form-wrap .register-box .form-inner + .form-box {
    margin-top: 28px;
  }
  .register-form-section .register-form-wrap .form-wrap .register-box .form-box + .form-box {
    margin-top: 28px;
  }
  .register-form-section .register-form-wrap .form-wrap .register-box .form-box .label {
    margin-bottom: 9px;
  }
  .register-form-section .register-form-wrap .form-wrap .register-box .form-box .input-text {
    height: 45px;
    padding: 0 19px;
  }
  .register-form-section .register-form-wrap .form-wrap .register-box .form-box .etc-text, .register-form-section .register-form-wrap .form-wrap .register-box .form-box .msg-text {
    margin-top: 6px;
  }
  .register-form-section .register-form-wrap .form-wrap .register-box + .register-box {
    margin-top: 45px;
    padding-top: 45px;
  }
  .register-form-section .register-form-wrap .form-wrap .register-btn-box {
    gap: 14px;
  }
  .register-form-section .register-form-wrap .form-wrap .register-btn-box a, .register-form-section .register-form-wrap .form-wrap .register-btn-box button {
    width: 135px;
    height: 45px;
    border-radius: 14px;
  }
  /* ---------------register-form-section END--------------- */
  /* ---------------register-result-section START--------------- */
  .register-result-section .register-result-wrap .register-btn-box {
    gap: 14px;
  }
  .register-result-section .register-result-wrap .register-btn-box a, .register-result-section .register-result-wrap .register-btn-box button {
    width: 135px;
    height: 45px;
    border-radius: 14px;
  }
  /* ---------------register-result-section END--------------- */
}
@media screen and (max-width: 1150px) {
  /* ---------------register-section START--------------- */
  .register-section .register-wrap .form-wrap .terms-list > .list-item:not(:nth-of-type(1)) {
    margin-top: 40px;
    padding-top: 40px;
  }
  .register-section .register-wrap .form-wrap .terms-list > .list-item .content-box {
    margin-bottom: 21px;
    border-radius: 13px;
    padding: 21px;
    max-height: 240px;
  }
  .register-section .register-wrap .form-wrap .btn-terms-check .check-inner .square {
    width: 18px;
    height: 18px;
  }
  .register-section .register-wrap .form-wrap .all-check-box {
    margin-top: 40px;
    padding-top: 40px;
  }
  .register-section .register-wrap .form-wrap .register-btn-box {
    gap: 13px;
  }
  .register-section .register-wrap .form-wrap .register-btn-box a, .register-section .register-wrap .form-wrap .register-btn-box button {
    width: 120px;
    height: 40px;
    border-radius: 13px;
  }
  /* ---------------register-section END--------------- */
  /* ---------------register-form-section START--------------- */
  .register-form-section .register-form-wrap .form-wrap .register-box .form-inner {
    gap: 26px;
  }
  .register-form-section .register-form-wrap .form-wrap .register-box .form-inner .form-box {
    width: calc((100% - 26px) / 2);
  }
  .register-form-section .register-form-wrap .form-wrap .register-box .form-inner + .form-inner {
    margin-top: 26px;
  }
  .register-form-section .register-form-wrap .form-wrap .register-box .form-box + .form-inner {
    margin-top: 26px;
  }
  .register-form-section .register-form-wrap .form-wrap .register-box .form-inner + .form-box {
    margin-top: 26px;
  }
  .register-form-section .register-form-wrap .form-wrap .register-box .form-box + .form-box {
    margin-top: 26px;
  }
  .register-form-section .register-form-wrap .form-wrap .register-box .form-box .label {
    margin-bottom: 8px;
  }
  .register-form-section .register-form-wrap .form-wrap .register-box .form-box .input-text {
    height: 40px;
    padding: 0 18px;
  }
  .register-form-section .register-form-wrap .form-wrap .register-box .form-box .etc-text, .register-form-section .register-form-wrap .form-wrap .register-box .form-box .msg-text {
    margin-top: 5px;
  }
  .register-form-section .register-form-wrap .form-wrap .register-box + .register-box {
    margin-top: 40px;
    padding-top: 40px;
  }
  .register-form-section .register-form-wrap .form-wrap .register-btn-box {
    gap: 13px;
  }
  .register-form-section .register-form-wrap .form-wrap .register-btn-box a, .register-form-section .register-form-wrap .form-wrap .register-btn-box button {
    width: 120px;
    height: 40px;
    border-radius: 13px;
  }
  /* ---------------register-form-section END--------------- */
  /* ---------------register-result-section START--------------- */
  .register-result-section .register-result-wrap .register-btn-box {
    gap: 13px;
  }
  .register-result-section .register-result-wrap .register-btn-box a, .register-result-section .register-result-wrap .register-btn-box button {
    width: 120px;
    height: 40px;
    border-radius: 13px;
  }
  /* ---------------register-result-section END--------------- */
}
@media screen and (max-width: 991px) {
  /* ---------------register-section START--------------- */
  .register-section .register-wrap .form-wrap .btn-terms-check:active .check-inner .icon {
    opacity: 1;
  }
  .register-section .register-wrap .form-wrap .register-btn-box a.btn-submit:active, .register-section .register-wrap .form-wrap .register-btn-box button.btn-submit:active {
    background-color: #256908;
  }
  .register-section .register-wrap .form-wrap .register-btn-box a.btn-cancel:active, .register-section .register-wrap .form-wrap .register-btn-box button.btn-cancel:active {
    background-color: #333;
  }
  /* ---------------register-section END--------------- */
  /* ---------------register-form-section START--------------- */
  .register-form-section .register-form-wrap .form-wrap .register-box .form-box .input-text:active {
    border-color: #389311;
  }
  .register-form-section .register-form-wrap .form-wrap .register-btn-box a.btn-submit:active, .register-form-section .register-form-wrap .form-wrap .register-btn-box button.btn-submit:active {
    background-color: #256908;
  }
  .register-form-section .register-form-wrap .form-wrap .register-btn-box a.btn-cancel:active, .register-form-section .register-form-wrap .form-wrap .register-btn-box button.btn-cancel:active {
    background-color: #333;
  }
  /* ---------------register-form-section END--------------- */
  /* ---------------register-result-section START--------------- */
  .register-result-section .register-result-wrap .register-btn-box a.btn-submit:active, .register-result-section .register-result-wrap .register-btn-box button.btn-submit:active {
    background-color: #256908;
  }
  /* ---------------register-result-section END--------------- */
}
@media screen and (max-width: 600px) {
  /* ---------------register-section START--------------- */
  .register-section .register-wrap .form-wrap .terms-list > .list-item:not(:nth-of-type(1)) {
    margin-top: 35px;
    padding-top: 35px;
  }
  .register-section .register-wrap .form-wrap .terms-list > .list-item .content-box {
    margin-bottom: 19px;
    border-radius: 12px;
    padding: 19px;
    max-height: 210px;
  }
  .register-section .register-wrap .form-wrap .all-check-box {
    margin-top: 35px;
    padding-top: 35px;
  }
  .register-section .register-wrap .form-wrap .register-btn-box {
    gap: 12px;
  }
  .register-section .register-wrap .form-wrap .register-btn-box a, .register-section .register-wrap .form-wrap .register-btn-box button {
    width: 105px;
    height: 35px;
    border-radius: 12px;
  }
  /* ---------------register-section END--------------- */
  /* ---------------register-form-section START--------------- */
  .register-form-section .register-form-wrap .form-wrap .register-box .form-inner {
    flex-wrap: wrap;
    gap: 24px;
  }
  .register-form-section .register-form-wrap .form-wrap .register-box .form-inner .form-box {
    width: 100%;
  }
  .register-form-section .register-form-wrap .form-wrap .register-box .form-inner + .form-inner {
    margin-top: 24px;
  }
  .register-form-section .register-form-wrap .form-wrap .register-box .form-box + .form-inner {
    margin-top: 24px;
  }
  .register-form-section .register-form-wrap .form-wrap .register-box .form-inner + .form-box {
    margin-top: 24px;
  }
  .register-form-section .register-form-wrap .form-wrap .register-box .form-box + .form-box {
    margin-top: 24px;
  }
  .register-form-section .register-form-wrap .form-wrap .register-box .form-box .label {
    margin-bottom: 7px;
  }
  .register-form-section .register-form-wrap .form-wrap .register-box .form-box .input-text {
    height: 35px;
    padding: 0 17px;
  }
  .register-form-section .register-form-wrap .form-wrap .register-box .form-box .etc-text, .register-form-section .register-form-wrap .form-wrap .register-box .form-box .msg-text {
    margin-top: 4px;
  }
  .register-form-section .register-form-wrap .form-wrap .register-box + .register-box {
    margin-top: 35px;
    padding-top: 35px;
  }
  .register-form-section .register-form-wrap .form-wrap .register-btn-box {
    gap: 12px;
  }
  .register-form-section .register-form-wrap .form-wrap .register-btn-box a, .register-form-section .register-form-wrap .form-wrap .register-btn-box button {
    width: 105px;
    height: 35px;
    border-radius: 12px;
  }
  /* ---------------register-form-section END--------------- */
  /* ---------------register-result-section START--------------- */
  .register-result-section .register-result-wrap .register-btn-box {
    gap: 12px;
  }
  .register-result-section .register-result-wrap .register-btn-box a, .register-result-section .register-result-wrap .register-btn-box button {
    width: 105px;
    height: 35px;
    border-radius: 12px;
  }
  /* ---------------register-result-section END--------------- */
}
@media screen and (max-width: 450px) {
  /* ---------------register-section START--------------- */
  .register-section .register-wrap .form-wrap .terms-list > .list-item:not(:nth-of-type(1)) {
    margin-top: 30px;
    padding-top: 30px;
  }
  .register-section .register-wrap .form-wrap .terms-list > .list-item .content-box {
    margin-bottom: 17px;
    border-radius: 11px;
    padding: 17px;
    max-height: 180px;
  }
  .register-section .register-wrap .form-wrap .btn-terms-check .check-inner .square {
    width: 16px;
    height: 16px;
  }
  .register-section .register-wrap .form-wrap .all-check-box {
    margin-top: 30px;
    padding-top: 30px;
  }
  .register-section .register-wrap .form-wrap .register-btn-box {
    gap: 11px;
  }
  .register-section .register-wrap .form-wrap .register-btn-box a, .register-section .register-wrap .form-wrap .register-btn-box button {
    width: 90px;
    height: 30px;
    border-radius: 11px;
  }
  /* ---------------register-section END--------------- */
  /* ---------------register-form-section START--------------- */
  .register-form-section .register-form-wrap .form-wrap .register-box .form-inner {
    gap: 22px;
  }
  .register-form-section .register-form-wrap .form-wrap .register-box .form-inner + .form-inner {
    margin-top: 22px;
  }
  .register-form-section .register-form-wrap .form-wrap .register-box .form-box + .form-inner {
    margin-top: 22px;
  }
  .register-form-section .register-form-wrap .form-wrap .register-box .form-inner + .form-box {
    margin-top: 22px;
  }
  .register-form-section .register-form-wrap .form-wrap .register-box .form-box + .form-box {
    margin-top: 22px;
  }
  .register-form-section .register-form-wrap .form-wrap .register-box .form-box .label {
    margin-bottom: 6px;
  }
  .register-form-section .register-form-wrap .form-wrap .register-box .form-box .input-text {
    height: 30px;
    padding: 0 16px;
  }
  .register-form-section .register-form-wrap .form-wrap .register-box .form-box .etc-text, .register-form-section .register-form-wrap .form-wrap .register-box .form-box .msg-text {
    margin-top: 3px;
  }
  .register-form-section .register-form-wrap .form-wrap .register-box + .register-box {
    margin-top: 30px;
    padding-top: 30px;
  }
  .register-form-section .register-form-wrap .form-wrap .register-btn-box {
    gap: 11px;
  }
  .register-form-section .register-form-wrap .form-wrap .register-btn-box a, .register-form-section .register-form-wrap .form-wrap .register-btn-box button {
    width: 90px;
    height: 30px;
    border-radius: 11px;
  }
  /* ---------------register-form-section END--------------- */
  /* ---------------register-result-section START--------------- */
  .register-result-section .register-result-wrap .register-btn-box {
    gap: 11px;
  }
  .register-result-section .register-result-wrap .register-btn-box a, .register-result-section .register-result-wrap .register-btn-box button {
    width: 90px;
    height: 30px;
    border-radius: 11px;
  }
  /* ---------------register-result-section END--------------- */
}
/* ---------------media screen END--------------- */