.woocommerce {
    display: flex;
    flex-direction: column;
}

.register-shop-container {
  width: 100%;
}

.register-shop-container input::-webkit-outer-spin-button,
.register-shop-container input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.register-shop-container__demarcation-line {
  margin-bottom: 30px;
}

.user-account {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  margin-bottom: 40px;
  width: 100%;
  background: #F9FBFD;
  padding: 30px;
}

.user-account__avatar {
  width: 120px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin-right: 57px;
}

.user-account__nickname {
  color: #000000;
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 10px;
}

.user-account__title {
  font-weight: 600;
  font-size: 14px;
  color: #2A6071;
}

.user-account__id {
  margin-bottom: 8px;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
}

.user-account__balance {
  color: #2570ED;
  font-weight: 600;
  font-size: 14px;
}

.seller-registration-form_hidden {
  display: none;
}

.seller-registration-form .form-custom-input {
  max-width: 540px;
}

.seller-registration-form__title {
  margin-bottom: 15px;
}

.seller-registration-form__sub-title {
  margin-bottom: 34px;
}

.seller-registration-form__label {
  margin-bottom: 6px;
}

.seller-registration-form__email-container {
  margin-bottom: 16px;
}

.seller-registration-form__code-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 32px;
  column-gap: 20px;
}

.seller-registration-form__code-container input {
  max-width: 180px;
}

.seller-registration-form__code-container button {
  padding-right: 23px;
  padding-left: 23px;
  height: 48px;
}

.seller-registration-form__error-msg {
  margin-top: 6px;
}

.seller-registration-form__successfully-message {
  margin-bottom: 32px;
}

.seller-registration-form__shop-name-input-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  max-width: 540px;
}

.seller-registration-form__shop-name-input-container_taken::after {
  content: 'Taken';
  position: absolute;
  right: 16px;
  display: block;
  font-weight: 600;
  font-size: 12px;
  color: #FF0000;
}

.seller-registration-form__shop-name-input-container_available::after {
  content: 'Available';
  position: absolute;
  right: 16px;
  display: block;
  font-weight: 600;
  font-size: 12px;
  color: #759417;
}

.seller-registration-form__shop-name-input-container input {
  max-width: 540px;
  width: 100%;
  padding-right: 80px;
}

.seller-registration-form__submit-btn {
  margin-left: auto;
  margin-top: 20px;
}

.welcome-msg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.welcome-msg_hidden {
  display: none;
}

.welcome-msg__img {
  margin-right: 49px;
  width: 260px;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
}

.welcome-msg__title {
  font-weight: 700;
  font-size: 24px;
  color: #2B2E35;
  margin-bottom: 16px;
}

.welcome-msg__text {
  font-weight: 400;
  font-size: 12px;
  color: #2B2E35;
  line-height: 18px;
  max-width: 395px;
}

.form-checkbox {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--black-800, #2B2E35);
  text-align: center;

  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
 
}
.form-checkbox a{
  color: var(--blue-600, #2570ED);
}


.form-checkbox input {
  opacity: 0;
  display: none;
}
.form-checkbox input:checked ~ .checkmark {
  background: var(--blue-primary, #2570ED);
}
.form-checkbox input:checked ~ .checkmark::before {
  opacity: 1;
}
.form-checkbox:hover .checkmark {
  border-color: #26BF89;
}

.checkmark {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid #E8E8E8;
  border-radius: 3px;
  transition: border-color 0.4s ease;
  transition: background-color 0.4s, border-color 0.4s ease;
  background: transparent;
}
.checkmark::before {
  content: url("data:image/svg+xml;charset=UTF-8,<svg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M4.19238 7.12756L6.23405 9.16923L9.80697 4.83069' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, calc(-50% + 2px));
  opacity: 0;
  transition: opacity 0.4s ease;
}

@media (max-width: 768px) {
  .welcome-msg__img {
    margin-right: 49px;
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 576px) {
  .user-account__avatar {
    width: 90px;
    height: 90px;
    margin-right: 27px;
  }
  .seller-registration-form__code-container {
    max-width: 300px;
  }

  .welcome-msg {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .welcome-msg__content {
    width: 100%;
  }
  .welcome-msg__text {
    width: 100%;
    max-width: none;
    text-align: center;
    margin: 0;
  }
  .welcome-msg__title {
    width: 100%;
    text-align: center;
  }
  .welcome-msg__img {
    margin-bottom: 10px;
    margin-left: 50px;
  }
}