.yunce_register_from_module {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.yunce_register_from_module input::-webkit-outer-spin-button,
.yunce_register_from_module input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.yunce_register_from_module input[type=password]::-ms-reveal,
.yunce_register_from_module input[type=password]::-ms-clear,
.yunce_register_from_module input[type=password]::-webkit-clear-button,
.yunce_register_from_module input[type=password]::-webkit-inner-spin-button,
.yunce_register_from_module input[type=password]::-webkit-outer-spin-button {
  display: none;
}
.yunce_register_from_module .item_filed {
  position: relative;
  display: block;
}
.yunce_register_from_module .item_filed .error-message {
  position: absolute;
  top: 0;
  right: 0;
  color: #FF2E00;
  font-weight: 400;
  font-size: 12px;
  background: url("img/error-icon.svg") no-repeat left center;
  padding-left: 16px;
}
.yunce_register_from_module .yunce_register_container {
  background: white;
  position: relative;
  width: 100%;
}
.yunce_register_from_module .yunce_register_container .ajax-error-message {
  display: none;
  background-color: rgba(255, 46, 0, 0.1);
  border: 1px solid rgba(255, 46, 0, 0.2);
  color: rgb(204, 36.8, 0);
  padding: 16px;
  margin-bottom: 16px;
  border-radius: 4px;
  text-align: center;
  font-size: 14px;
}
.yunce_register_from_module .yunce_register_container .ajax-error-message.show {
  display: block;
}
.yunce_register_from_module .yunce_register_title {
  font-size: 30px;
  font-weight: bold;
  color: #111827;
  margin-bottom: 32px;
}
.yunce_register_from_module .yunce_register_form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
  position: relative;
}
.yunce_register_from_module .yunce_register_form:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1px;
  height: 65%;
  background: #C4CFDC;
}
.yunce_register_from_module .yunce_register_col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.yunce_register_from_module .yunce_register_col .yunce_social_login {
  padding-top: 20px !important;
}
.yunce_register_from_module .yunce_register_input_group {
  margin-bottom: 10px;
}
.yunce_register_from_module .yunce_register_input_group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 10px;
}
.yunce_register_from_module .yunce_register_input_group label span {
  color: #FF2E00;
}
.yunce_register_from_module .yunce_register_input_group input {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  background: #EEF2F6;
  border: 1px solid #C4CFDC;
  border-radius: 4px;
  outline: none;
}
.yunce_register_from_module .yunce_register_input_group input:focus {
  -webkit-box-shadow: 0 0 0 2px rgba(255, 108, 27, 0.2);
          box-shadow: 0 0 0 2px rgba(255, 108, 27, 0.2);
}
.yunce_register_from_module .yunce_register_verify_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.yunce_register_from_module .yunce_register_verify_group input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.yunce_register_from_module .yunce_register_verify_group button {
  padding: 0 10px;
  width: 40%;
  min-width: 170px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  white-space: nowrap;
  background: #FF6C1B;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.yunce_register_from_module .yunce_register_verify_group button:hover {
  background: rgba(255, 108, 27, 0.9);
}
.yunce_register_from_module .yunce_register_verify_group button:disabled {
  background: #C4CFDC;
  cursor: not-allowed;
}
.yunce_register_from_module .yunce_register_verify_group .yunce-code-expiry-hint {
  font-size: 12px;
  color: #374151;
  margin-top: 4px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.yunce_register_from_module .yunce_register_verify_group .yunce-code-expiry-hint.warning {
  color: #F59E0B;
}
.yunce_register_from_module .yunce_register_verify_group .yunce-code-expiry-hint.expired {
  color: #FF2E00;
}
.yunce_register_from_module .yunce_register_password_group {
  position: relative;
}
.yunce_register_from_module .yunce_register_password_group .password-toggle-icon {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-size: cover;
  cursor: pointer;
}
.yunce_register_from_module .yunce_register_password_group .password-toggle-icon.pass-show {
  background-image: url(img/pass-show.svg);
}
.yunce_register_from_module .yunce_register_password_group .password-toggle-icon.pass-hide {
  background-image: url(img/pass-hide.svg);
}
.yunce_register_from_module .yunce_register_name_group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.yunce_register_from_module .yunce_register_prefix_group {
  position: relative;
}
.yunce_register_from_module .yunce_register_prefix_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.yunce_register_from_module .yunce_register_error_text {
  font-size: 12px;
  color: #FF2E00;
}
.yunce_register_from_module .yunce_register_action_group {
  padding-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.yunce_register_from_module .yunce_register_btn {
  width: 100%;
  height: 50px;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.yunce_register_from_module .yunce_register_btn.yunce_register_btn_primary {
  background: #FF6C1B;
  color: white;
  border: none;
}
.yunce_register_from_module .yunce_register_btn.yunce_register_btn_primary:hover {
  background: rgba(255, 108, 27, 0.9);
}
.yunce_register_from_module .yunce_register_btn:disabled {
  background: #C4CFDC !important;
  cursor: not-allowed;
}
.yunce_register_from_module .yunce_register_btn.yunce_register_btn_outline {
  background: white;
  color: #374151;
  border: 1px solid #FF6C1B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.yunce_register_from_module .yunce_register_btn.yunce_register_btn_outline:hover {
  background: #F9FAFB;
}
.yunce_register_from_module .yunce_register_guest_link {
  text-align: center;
  color: #849AB2;
  text-decoration: none;
  margin-top: 10px;
  border-bottom: 1px solid #849AB2;
  -ms-flex-item-align: center;
      align-self: center;
}
.yunce_register_from_module .yunce_register_guest_link:hover {
  color: #374151;
  border-color: #374151;
}
.yunce_register_from_module .woocommerce-error,
.yunce_register_from_module .woocommerce-message,
.yunce_register_from_module .woocommerce-info {
  padding: 16px;
  margin-bottom: 24px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.5;
  list-style: none;
}
.yunce_register_from_module .woocommerce-error li,
.yunce_register_from_module .woocommerce-message li,
.yunce_register_from_module .woocommerce-info li {
  margin: 0;
}
.yunce_register_from_module .woocommerce-error {
  background-color: rgba(255, 46, 0, 0.1);
  color: rgb(204, 36.8, 0);
  border: 1px solid rgba(255, 46, 0, 0.2);
}
.yunce_register_from_module .woocommerce-message {
  background-color: rgba(16, 185, 129, 0.1);
  color: rgb(11.9402985075, 138.0597014925, 96.2686567164);
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.yunce_register_from_module .woocommerce-info {
  background-color: rgba(255, 108, 27, 0.1);
  color: rgb(231, 82.0657894737, 0);
  border: 1px solid rgba(255, 108, 27, 0.2);
}
.yunce_register_from_module .yunce_register_error_text {
  display: none;
  font-size: 12px;
  color: #FF2E00;
  margin-top: 4px;
}
.yunce_register_from_module .yunce_password_strength {
  height: 4px;
  margin-top: 8px;
  border-radius: 2px;
  background: #C4CFDC;
  overflow: hidden;
}
.yunce_register_from_module .yunce_password_strength::after {
  content: "";
  display: block;
  height: 100%;
  width: 0;
  background: #FF2E00;
  -webkit-transition: width 0.3s ease, background-color 0.3s ease;
  transition: width 0.3s ease, background-color 0.3s ease;
}
.yunce_register_from_module .yunce_password_strength.weak::after {
  width: 25%;
  background: #FF2E00;
}
.yunce_register_from_module .yunce_password_strength.medium::after {
  width: 50%;
  background: #FBBF24;
}
.yunce_register_from_module .yunce_password_strength.strong::after {
  width: 75%;
  background: #34D399;
}
.yunce_register_from_module .yunce_password_strength.very-strong::after {
  width: 100%;
  background: #10B981;
}/*# sourceMappingURL=style.css.map */