.inner-background{
  background-color: rgba(249, 250, 247, 1);
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.delete-acconut-section {
  /* padding: 5vh 0; */
}
.delete-acconut-section-container-main {
  /* margin-top: 3vh;
  margin-bottom: 5vh; */
  /* padding: 44px 24px; */
  /* border-radius: 20px; */
  display: flex;
  flex-direction: column;
  /* background: linear-gradient(180deg, #f0f7ff 0%, #f4f9ff 100%);
  box-shadow: 0px 0px 100px -30px #cccccc; */
}

.delete-acconut-avow {
  border-radius: 20px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}


.delete-acconut-order-icon {
  margin-right: 1rem;
  width: 44px;
  height: 44px;
  line-height: 44px;
  background: var(--second-color-icon);
  border-radius: 44px;
  opacity: 1;

  font-size: 20px;
  font-weight: var(--font-medium);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.delete-acconut-avow-content {
  float: right;
  width: 93%;
  font-size: 1.1rem;
  color: #6f728a;
  margin-left: 5px;
}

.delete-acconut-avow-item {
  width: 100%;
  display: flex;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}


.delete-acconut-avow-img {
  width: 100%;
}

/* Media queries */

@media screen and (min-width: 768px) {


  .delete-acconut-section-container-main {
    /* margin-top: 3vh;
    margin-bottom: 5vh; */
    /* padding: 104px 52px; */
    /* border-radius: 20px; */
    display: flex;
    flex-direction: row;
    /* background: linear-gradient(180deg, #f0f7ff 0%, #f4f9ff 100%);
    box-shadow: 0px 0px 100px -30px #cccccc; */
  }
  
  .delete-acconut-avow {
    /* padding-left: 7%; */
    box-sizing: border-box;
    position: relative;
  }

  .delete-acconut-avow-content {
    float: right;
    width: 93%;
    font-size: 1.2rem;
    color: #6f728a;
    margin-left: 5px;
    text-align: justify;
  }



  .delete-acconut-avow-item {
    width: 100%;
    display: flex;
    margin-bottom: 1.3rem;
  }

  .delete-acconut-avow-img {
    width: 100%;
  }

  .home .app-card {
    width: 94%;
    min-height: 70%;
    justify-content: center;
    padding: 30px 50px;
  }
}

@media screen and (min-width: 1200px) {
  .delete-acconut-order-icon {
  }

  .delete-acconut-avow-content {
    float: right;
    width: 93%;
    font-size: 1.3rem;
    color: #6f728a;
    margin-left: 5px;
  }

  .delete-acconut-avow-item {
    width: 100%;
    display: flex;
    margin-bottom: 1.3rem;
  }

  .delete-acconut-avow-img {
    width: 100%;
  }
}

/** Home page */

.home .form-item .form-item-content {
  flex: 1 1 auto;
  height: 66px;
  border-radius: 8px;
  opacity: 1;
  display: flex;
  align-items: center;
  padding: 0 20px;
}
.home .form-item:focus-within .form-item-content-vcode,
.home .form-item:focus-within .form-item-content {
  border: 1px solid var(--input-focus-color);
}

.home .form-item .form-item-content-vcode {
  flex: 1 1 auto;
  height: 66px;
  background: #f6f7f9;
  /* left top right bottom */
  border-radius: 8px 00px 00px 8px;
  opacity: 1;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.home .form-item input {
  border: 0;
  font-size: 18px;
  background: #f6f7f9;
}

.home .form-item input::placeholder {
  color: var(--input-placeholder-color);
  font-weight: var(--font-medium);
}


ul,
li {
  margin: 0;
  /* list-style: none; */
}

input {
  outline: none;
  width: 100%;
}

button {
  border: 0;
  outline: none;
  background-color: transparent;
}

.home .col-left {
  display: flex;
  align-items: center;
}

.home .col-right {
  padding: 0;
  display: none;
}

.app-card {
  padding: 24px 12px;
  display: flex;
  flex-direction: column;
  opacity: 1;
  background: #FFFFFF;
  box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.04);
  /* background-image: linear-gradient(180deg, #F1F7FF 0%, rgba(255,255,255,0) 100%), linear-gradient(180deg, rgba(6, 9, 69, 0.2), rgba(234, 236, 255, 0)) 4 4;
    background-origin: border-box;
    background-clip: content-box, border-box; */
  gap: 20px;
}

.container-primary {
  background-color: var(--container-color-primary);
}

/** Home page */

.home .app-card__footer--padding {
  padding: 0 10%;
}

.home .app-card .app-text-strong {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

.home .app-card .app-text-light {
  color: var(--text-color);
  font-weight: var(--font-semi-bold);
}

.home .app-card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.home .form-item {
  display: flex;
  align-items: center;
  background: #F7F8FA;
  border: 1px solid var(--input-border-color);
  border-radius: 8px;
}

.home .form-item.error{
  border-color: #FF4746;
}

.home .form-item__error{
  color: #FF4746;
  font-size: 14px;
  line-height: 1;
  display: none;
}
.home .form-item__error.show{
  display: block;
}

.home .form-item-input {
  flex: 1 1 auto;
  display: flex;
  gap: 1rem;
  line-height: 1.1;
}

.home .send-sms-button {
  color: var(--second-color);
  font-weight: var(--font-medium);
  text-decoration: underline;
  text-align: right;
  cursor: pointer;
}

.home #vCodeButton {
  background-color: #f5f6fa;
  border-radius: 0px 8px 8px 0px;
  width: 115px;
  height: 66px;
}

.home .app-confirm-button {
  border: 0;
  height: 66px;
  width: 100%;
  color: var(--container-color);
  font-weight: var(--font-medium);
  font-size: 20px;
  background: var(--second-color);
  border-radius: 39px;
  cursor: pointer;
}

.home .app-confirm-button:disabled,
.home .app-confirm-button[disabled] {
  background: var(--second-color);
  opacity: 0.55;
  cursor: not-allowed;
}

@media screen and (min-width: 992px) {
  .home .app-card {
    margin-left: 85px;
  }

  .home .col-right {
    display: block;
  }
}

.delete-account-title-icon {
  margin-top: 5px;
  width: 32px;
  height: 32px;
}

.delete-account-circle-right {
  height: 92%;
  position: absolute;
  right: 0;
  bottom: 0;
}

.delete-account-title {
  font-size: 32px;
  color: var( --title-color-333);
  font-weight: var(--font-semi-bold);
  margin-bottom: 0;
}

.delete-account-title-sub {
  font-size: 20px;
  color: #8D9990;
  font-weight: var(--font-thin);
  margin-bottom: 2.5rem;
}

.delete-account-left {
  font-size: 18px;
  color: var(--text-color-191A17);
  margin-bottom: 0.3rem;
  line-height: 36px;
}

.delete-account-trash-tips {
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
  font-weight: var(--font-semi-bold);
  color: var(--text-color-191A17);
}

.delete-account-mobile-prefix {
  font-size: 18px;
  font-weight: var(--font-medium);
  color: var(--second-color);
}

.delete-account-check {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
}

.delete-account-check.active .delete-account-check-radio {
  background-image: url(../images/delete-account-checked.png);
}

.delete-account-check-radio {
  display: inline-block;
  background-image: url(../images/delete-account-check.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 20px;
  height: 20px;
}

.delete-account-check-tips {
  margin-left: 8px;
  font-size: 12px;
  font-weight: var(--font-medium);
  color: var(--title-color-666);
}

.delete-account-status-img {
  width: 180px;
}

.delete-account-error-tips {
  margin-top: 15px;
  font-size: 18px;
  color: var(--title-color-333);
  text-align: center;
}

.mt-10 {
  margin-top: 10px;
}

.mt-50 {
  margin-top: 50px;
}

.delete-account-cancel {
  margin-bottom: 69px;
}

.delete-account-done {
  margin-bottom: 50px;
}

.delete-account-doing-date-wrap {
  margin-top: 15px;
  margin-bottom: -6px;
  display: flex;
  justify-content: center;
}

.delete-account-doing-date-left {
  font-size: 20px;
  color: var(--title-color-333);
}

.delete-account-doing-date {
  margin-left: 6px;
  font-size: 20px;
  color: var(--input-focus-color);
}

.delete-account-doing-tips {
  font-size: 15px;
  text-align: center;
  margin-bottom: 15px;
  color: var(--title-color-333);
}

.delete-account-doing-bottom {
  margin-top: 13px;
  margin-bottom: 28px;
  display: flex;
  /* vertical -> all sub views */
  align-items: center;
  /* horizontal -> all sub views */
  justify-content: left;
}

.delete-account-doing-bottom-img {
  width: 13px;
  height: 13px;
}

.delete-account-doing-bottom-tips {
  margin-left: 6px;
  font-size: 12px;
  color: var(--title-color-333);
  line-height: 12px;
}

.horizontal_left {
  justify-content: left;
}

.ml-30 {
  margin-left: 30px;
}

.footer__delete-account {
  color: var(--first-color-light) !important;
}

@media screen and (min-width: 768px) {
  .inner-background{
    padding-top: 7rem; 
    padding-bottom: 7rem;
  }

  .delete-account-left{
    font-size: 24px;
  }

  .delete-account-status-img{
    width: 230px;
  }

  .delete-account-done {
    margin-bottom: 128px;
  }
}