.klentyLogo {
  padding: 0.5rem 0;
}

.klentyLogo .container {
  max-width: 1280px;
}

.requestDemo {
  padding: 3rem 0 4rem;
}

.requestDemo h1 {
  color: #0e0d59;
  font-size: 2rem;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}

.requestDemo ul {
  list-style: none;
}

.requestDemo li {
  position: relative;
  color: #0e0d59;
  font-size: 1rem;
  line-height: normal;
  margin-bottom: 1.25rem;
  padding-left: 32px;
}

.requestDemo li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--blue-tick);
  background-size: contain;
}

.registerform {
  border-radius: 16px;
  background: linear-gradient(0deg, #dee9ff 0%, #dee9ff 100%),
    linear-gradient(
      34deg,
      #ffc9eb -4.75%,
      rgba(182, 209, 253, 0.38) 72.37%,
      rgba(175, 210, 255, 0) 116.35%
    );
  width: 100%;
  padding: 6rem 0;
  text-align: center;
}

.formKlentyLogo {
  margin-bottom: 1.5rem;
}

.formHeading {
  color: #0e0d59;
  text-align: center;
  font-family: Poppins;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 2rem;
}

.formWrapper {
  padding: 0 1rem;
  width: 68%;
  margin: auto;
  text-align: left;
}

.formWrapper button {
  display: block;
}

.formGroup {
  margin-bottom: 16px;
}

.formGroup label {
  color: #3d3c7d;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0.25rem;
  display: block;
}

.formGroup input {
  border-radius: 0.25rem;
  background: #fff;
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
}

.formGroup input:focus {
  outline: none;
}

.formGroup input::placeholder {
  color: #9f9fc7;
  font-size: 0.75rem;
  line-height: normal;
  text-transform: lowercase;
}

.shake {
  animation: shake 1s cubic-bezier(0.36, 0.07, 0.19, 0.97) both infinite;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

@keyframes shake {
  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }

  30%,
  50%,
  70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%,
  60% {
    transform: translate3d(4px, 0, 0);
  }
}

.formWrapper .btn-block {
  color: #fff;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.0175rem;
  text-transform: uppercase;
  padding: 0.75rem 0;
}

.hrLineCont {
  position: relative;
  text-align: center;
  margin: 1.5rem -20%;
}

.hrLine {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
}

.orText {
  color: #0e0d59;
  font-size: 1rem;
  line-height: normal;
  margin: 0;
}

.already {
  color: #3d3c7d;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 3rem;
}

.already a {
  color: #504ee4;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
}

.already a:hover {
  text-decoration: underline;
}

.google-sign-in {
  margin-bottom: 40px;
  display: flex;
  border: 1px solid #dbdbdb;
  box-sizing: border-box;
  border-radius: 6px;
  cursor: pointer;
  background: white;
  align-items: center;
}
.google-icon {
  width: 50px;
}
.google-sign-in p {
  width: 200px;
  text-align: center;
  margin-bottom: 0px !important;
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.04em;
  color: #26264d;
}

.google-icon-wrapper {
  background: white;
  position: relative;
  left: -5px;
  border-radius: 6px 0px 0px 6px;
}

.google-sign-in:focus,
.google-sign-in:hover {
  outline: none;
  box-shadow: 0px 1px 5px 0px rgb(0 0 0 / 25%),
    inset 0px 1px 2px 0px transparent;
}

.register-footer {
  margin: 24px 0px 0;
  color: #5a5984;
  font-size: 0.75rem;
  line-height: normal;
  text-align: center;
}

.register-footer a {
  color: #5a5984;
  text-decoration-line: underline;
}
.register-footer a:hover {
  text-decoration: underline;
}

.signin-error {
  color: #504ee4 !important;
}
.signin-error:hover {
  text-decoration: underline;
}
.text-red {
  color: red !important;
}
.danger-img {
  display: none;
  margin-right: 8px;
  margin-top: -4px;
}
.remove-d-none {
  display: none;
}

.validatingText {
  margin-bottom: 0px;
  padding-top: 7px;
  font-size: 12px;
  color: #0d144a;
  display: flex;
  align-items: center;
  gap: 6px;
}

.validatingText svg {
  animation: rotate 1s infinite linear;
  width: 16px;
  position: relative;
  top: -1px;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.ks-error {
  display: none;
  margin-bottom: 0px;
  color: #fc1112;
  padding-top: 7px;
  font-size: 12px;
}
.ks-error span {
  color: red;
}
.ks-display {
  display: block !important;
}

/* Logo Section */
.logo-scrolling {
  padding: 4rem 0 0;
}

.powering {
  color: #0e0d59;
  font-size: 0.9375rem;
  line-height: normal;
  text-transform: capitalize;
  position: relative;
  margin-bottom: 2rem;
  text-align: center;
}

/* slider css */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-223.19rem);
  }
}

.slider {
  background: transparent;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.slider::before,
.slider::after {
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 100%;
  position: absolute;
  width: 15%;
  z-index: 2;
}

.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.slider::before {
  left: 0;
  top: 0;
}

.slider .slide-track {
  animation: scroll 30s linear infinite;
  display: flex;
  width: 223.19rem;
}

.slider .slide {
  padding: 1rem 2.5rem;
  text-align: center;
  display: flex;
  align-items: center;
}
/*  */

@media only screen and (max-width: 786px) {
  .row {
    row-gap: 3rem;
  }
  .requestDemo h1 {
    margin-top: 0;
  }
  .logo-scrolling {
    display: none;
  }
  .formWrapper {
    width: 80%;
  }
  .requestDemo li:before {
    top: 0;
  }
}

/* lp register */

#lpRequestDemo .logo {
  margin-left: 5%;
  margin-top: 16px;
}

#lpRequestDemo .requestDemo {
  padding: 0 !important;
}

#lpRequestDemo h1 {
  font-size: 1.5rem;
  color: #fff;
  padding-left: 12%;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.bgBlue {
  background: linear-gradient(125deg, #6665d7 0%, #4f4dc9 70.59%),
    linear-gradient(
      34deg,
      #ffc9eb -4.75%,
      rgba(182, 209, 253, 0.38) 72.37%,
      rgba(175, 210, 255, 0) 116.35%
    );
}

#lpRequestDemo .formHeading span {
  font-size: 0.9175rem;
}

#lpRequestDemo .powering {
  margin-bottom: 16px;
  color: #fff !important;
}

.registerFormCont {
  background-color: #fff;
  border-radius: 16px 0 0 16px;
  padding: 52px 0;
  height: 100%;
  display: flex;
  align-items: center;
}

#lpRequestDemo .registerform {
  width: 70%;
  margin: auto;
}

.formCont {
  height: 100%;
}

#lpRequestDemo .slider {
  background: transparent;
}

#lpRequestDemo .slider::before,
#lpRequestDemo .slider::after {
  background: linear-gradient(
    to right,
    #6a69e1 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

#lpRequestDemo .imgCont {
  position: relative;
  height: 400px;
  text-align: center;
}

#lpRequestDemo .scroll-img {
  position: absolute;
  width: auto !important;
}

#lpRequestDemo .mainImg {
  bottom: 40px;
  left: 16%;
  transform: translateX(-50%);
  z-index: 2;
}

#lpRequestDemo .col-lg-5 {
  max-width: 44.666667%;
}

#lpRequestDemo .col-lg-7 {
  max-width: 55.333333%;
}

#lpRequestDemo .sideImg1 {
  top: 20%;
  right: 14%;
  z-index: 4;
}

#lpRequestDemo .sideImg2 {
  top: 27%;
  right: 10%;
  z-index: 4;
}

#lpRequestDemo .sideImg3 {
  top: 19%;
  right: 20%;
  z-index: 4;
}

#lpRequestDemo .owl-carousel {
  z-index: inherit;
}

#lpRequestDemo .gradientHolder {
  position: absolute;
  bottom: 0;
  z-index: 3;
  width: 100%;
  margin: 0 -15px 0 0;
}

#lpRequestDemo .col-lg-7 {
  position: relative;
  z-index: 4;
}

#lpRequestDemo .gradientHolder img {
  width: 100%;
  margin-left: -24px;
}

#lpRequestDemo .carouselCont {
  position: relative;
  width: 102%;
}

#lpRequestDemo .logo-scrolling {
  background-color: #6a69e1;
  margin-right: -16px;
  margin-left: -16px;
  padding-top: 60px;
  padding-bottom: 28px;
}

.carousel {
  height: 400px;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  height: 360px;
}

.carousel-slide {
  display: none;
  position: relative;
}

.carousel-slide.active {
  display: block;
}

.carousel-slide.active .imgCont .mainImg,
.carousel-slide.active .imgCont .sideImg1,
.carousel-slide.active .imgCont .sideImg2,
.carousel-slide.active .imgCont .sideImg3 {
  animation: movingfadein 10s ease-in-out;
}

@keyframes movingfadein {
  0% {
    opacity: 0;
    transform: translate3d(40px, 0, 0);
  }
  20% {
    opacity: 1;
    transform: translate3d(-50px, 0, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(-50px, 0, 0);
  }
}

.carousel-dots {
  text-align: center;
  position: relative;
  z-index: 3;
  margin-top: -64px;
  background: #6a69e1;
}

.carousel-dot {
  display: inline-block;
  width: 28px;
  height: 4px;
  border-radius: 24px;
  background-color: rgba(255, 255, 255, 0.39);
  margin: 0 5px;
  cursor: pointer;
}

.carousel-dot.active {
  background-color: #ffffff;
}

/*  */

/* submit button start */

.trioLoader{
  position: relative;
  top: 2px;
}

.scheduleDemoFormBtnDot1 {
  opacity: 0;
  animation: fadeInOut1 2s ease-in-out infinite;
  font-weight: 900;
}

.scheduleDemoFormBtnDot2 {
  opacity: 0;
  animation: fadeInOut2 2s ease-in-out infinite;
  font-weight: 900;
}

.scheduleDemoFormBtnDot3 {
  opacity: 0;
  animation: fadeInOut3 2s ease-in-out infinite;
  font-weight: 900;
}

@keyframes fadeInOut1 {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeInOut2 {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeInOut3 {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* submit button end */
