.auth-page-inner {
  min-height: 100vh;
  display: flex;
  flex-direction: column;

  .header-content-auth {
    padding: 15px 30px;
    border-bottom: 1px solid #dbe0e9;
    a {
      svg {
        width: 120px;
      }
    }
    @media (max-width: 767px) {
      padding: 15px 25px;
      a {
        svg {
          width: 90px;
        }
      }
    }
    .selector {
      position: relative;
      display: flex;
      align-items: center;
      gap: 10px;
      position: relative;
      @media (max-width: 767px) {
        gap: 5px;
        svg {
          width: 17px;
          height: 17px;
        }
      }
      select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border: 0;
        outline: none;
        background-color: transparent;
        color: #606e84;
        width: 55px;
        position: relative;
        z-index: 9;
      }
      svg {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        html[dir="ltr"] & {
          right: 0;
          left: auto;
        }
      }
    }
  }
  .right-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: auto !important;
    overflow-y: auto;
    overflow-x: hidden;
    .title {
      margin-top: 0 !important;
      text-align: center !important;
      margin-bottom: 10px !important;
      font-family: inherit;
      @media (max-width: 767px) {
        font-size: 20px;
      }
    }
    p {
      color: #606e84;
    }
    form {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin: 15px 0;
      .box-auth-inner {
        /* margin-bottom: 20px; */
        label {
          color: #0f0c36;
          margin-bottom: 10px;
          font-size: 16px;
          font-weight: 400;
          display: block;
          text-align: start;
        }
        .input-auth-inner {
          border: 1px solid #dbe0e9;
          background-color: #fff;
          border-radius: 10px;
          height: 45px;
          padding: 0 20px;
          flex-wrap: nowrap;
          svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
          }
          input {
            border: 0;
            background-color: transparent;
            flex: 1;
            outline: none;
            font-size: 15px;
            min-width: 0;
            width: 100%;
            &::placeholder {
              color: #dbe0e9;
              font-size: 15px;
              text-overflow: ellipsis;
              white-space: nowrap;
              overflow: hidden;
            }
          }
          span {
            display: inline-block;
            border-inline-start: 1px solid #0f0c36;
            padding-inline-start: 10px;
            line-height: 15px;
          }
          &.n-phone {
            direction: ltr;
            span {
              border-inline-start: none;
              border-inline-end: 1px solid #0f0c36;
              padding-inline-start: 0;
              padding-inline-end: 10px;
            }
            input {
              text-align: start;
              padding-inline-end: 0;
              padding-inline-start: 10px;
            }
          }
        }
      }
      .in-check-agree {
        padding: 0;
        padding-inline-start: 30px;
        .form-check-label {
          cursor: pointer;
          font-size: 15px !important;
          span {
          }
          a {
            font-weight: normal;
            text-decoration: underline;
            color: #606e84;
          }
          &:before {
            right: 7px;
            top: 3px;
            width: 6px;
            height: 11px;
            border-width: 1.5px;
          }
          &:after {
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            border-radius: 5px;
          }
        }
      }
    }
    .content {
      width: 100%;
      padding: 0 !important;
      .login-box {
        position: relative;
        top: 0 !important;
        right: 0;
        left: 0 !important;
        transform: initial;
        bottom: 0 !important;
        width: 100% !important;
        max-width: 530px;
        margin: 15px auto 0 !important;
        .form-submit-btn,
        .register-link {
          border-radius: 10px;
          height: 45px;
          &:disabled {
            color: #0f0c36;
          }
        }
        &.forgetpass-form,
        &.pin-code-form {
          .t-other {
            display: none !important;
          }
          .back-to-login {
            border: 1px solid #0f0c36 !important;
            background-color: transparent !important;
            &:hover {
              background-color: #0f0c36 !important;
              color: #fff !important;
            }
          }
        }
        .t-other {
          p {
            color: #606e84;
            margin: 20px 0;
          }
          .register-link {
            border: 1px solid #0f0c36 !important;
            background-color: transparent !important;
            &:hover {
              background-color: #0f0c36 !important;
              color: #fff !important;
            }
          }
        }
      }
      .verifyButtons {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
        padding: 30px 0;
        height: auto !important;
        margin: 0 !important;
        @media (max-width: 767px) {
          gap: 15px;
          padding: 50px 0;
        }
        .in-core {
          margin: 0 !important;
          width: 100px;
          height: 100px;
          input {
            border: 1px solid #dbe0e9;
            border-radius: 30px;
            background-color: transparent;
            text-align: center;
            width: 100% !important;
            height: 100%;
            transition: all 0.3s ease;
            padding: 10px !important;
            @media (max-width: 767px) {
              border-radius: 20px;
            }
            &::placeholder {
              color: #dbe0e9 !important;
            }
          }
          @media (max-width: 767px) {
            width: 73px;
            height: 73px;
          }
        }
      }
      .validaion-error {
        padding: 0 !important;
        text-align: center;
        font-size: 15px;
      }
      .error {
        .verifyButtons {
          .in-core {
            input {
              border-color: #ef4444 !important;
              &::placeholder {
                color: #ef4444 !important;
              }
            }
          }
        }
      }
      .verification-code-resend {
        margin-bottom: 30px;
        strong {
          font-weight: normal;
          color: #0f0c36;
        }
        span {
          color: #606e84;
        }
      }
      .not-send {
        span {
          color: #0f0c36;
        }
        a {
          font-weight: normal;
          color: #606e84;
        }
      }
    }
  }
  .footer-content-inner {
    margin: 0 !important;
    span,
    a {
      font-size: 14px !important;
    }
  }
}

.right-pinCode {
  p {
    @media (max-width: 767px) {
      max-width: 305px;
      margin: auto;
    }
  }
}

.right-content {
  height: auto !important;
  min-height: initial !important;
}

[dir="ltr"] .in-check-agree .form-check-label:before {
  right: auto;
  left: 8.5px;
}

[dir="ltr"] .in-check-agree .form-check-label:after {
  right: auto;
  left: 0;
}
/* 
.input-group-wrapper {
  position: relative;
  margin-top: 25px;
  display: flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  background: #fff;
  transition: all 0.3s ease;
  height: 60px;
  padding: 0 20px;

  &.n-phone {
    span {
      display: inline-block;
      border-inline-start: 1px solid #0f0c36;
      padding-inline-start: 10px;
      line-height: 15px;
    }
    .floating-input {
      padding-inline-end: 10px;
      &::placeholder {
        text-align: end;
      }
    }
  }

  &:focus-within {
    border-color: #292d32;
  }

  svg {
    width: 24px;
    height: 24px;
  }

  .floating-input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    z-index: 2;

    &::placeholder {
      opacity: 0;
      transition: opacity 0.2s ease;
      text-align: right;
      color: #dbe0e9;
    }

    &:focus::placeholder {
      opacity: 1;
    }

    &:focus ~ .floating-label,
    &:not(:placeholder-shown) ~ .floating-label {
      top: 0;
      transform: translateY(-50%);
      z-index: 3;
    }
  }

  .floating-label {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: 0f0c36;
    margin: 0 !important;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 1;
    background: #fff;
    padding: 0 10px;
  }
} */

.code-verify-in {
  .verifyButtons {
    flex-direction: row-reverse;
  }
}

/* Plans grid mobile carousel */
@media (max-width: 1200px) {
  .plans-grid-wrapper {
    scroll-snap-type: x mandatory;
    padding-inline-start: 20px;
    scroll-padding-inline-start: 20px;
  }
  .plans-grid-wrapper .plans-subscription {
    padding-inline: 0 !important;
  }
  .plans-grid-wrapper .plans-subscription .card-plan {
    scroll-snap-align: start;
  }
  .plans-grid-wrapper .plans-subscription .card-plan:last-child {
    margin-inline-end: 20px;
  }
}

.plans-carousel-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 10px 0 4px;
}
@media (max-width: 1200px) {
  .plans-carousel-dots {
    display: flex;
  }
}
.plans-carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dbe0e9;
  cursor: pointer;
  border: none;
  padding: 0;
  outline: none;
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.plans-carousel-dots .dot.active {
  background: #0f0c36;
  width: 55px;
  border-radius: 4px;
}
