body {
	margin: 0;
	padding: 0;
  font-family: "Inter", sans-serif;
	    background: #000212;
}
button, input, optgroup, select, textarea {
  font-family: "Inter", sans-serif;
}
.LoginBg {
    height: 100%;
    background: #000;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.LoginBg::before {
	content: "";
	background-image: url(../img/login/left-shape.png);
	background-repeat: no-repeat;
	position: absolute;
	left: 0;
	bottom:0px;
	width: 100%;
	height: 100%;
}
.LoginBg::after {
	content: "";
	background-image: url(../img/login/right-shape.png);
	background-repeat: no-repeat;
	position: absolute;
	right: 0;
	top:0px;
	width: 440px;;
	height: 100%;
}


.LoginContents {
	width: 80%;
	margin: 0 auto;
}
.mt-15 {
  margin-top: 15px !important;
}
/* Premium Login Container */
.login-container {
	width: 100%;
	background: #151425;
	border-radius: 15px;
	    height: 100%;
	z-index: 100;
	position: relative;
	transform: translateY(0);
	animation: containerEntrance 1.2s cubic-bezier(0.4, 0, 0.2, 1) both;
  border: 1px solid #3c3a56;
}
.login-form-bg{
	padding: 38px;
}

@keyframes containerEntrance {
	0% {
		opacity: 0;
		transform: translateY(40px) scale(0.95);
		filter: blur(10px);
	}

	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
		filter: blur(0);
	}
}
.login-container::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 15px;
	padding: 1px;

	mask-composite: xor;
	-webkit-mask-composite: xor;
	pointer-events: none;
}

/* Header Section */
.login-header {
	text-align: center;
	margin-bottom: 40px;
	animation: headerSlide 1.2s cubic-bezier(0.4, 0, 0.2, 1) both 0.2s;
}

@keyframes headerSlide {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
.LoginIcon {
	width: 64px;
	height: 64px;
	margin: 0 auto 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	font-weight: 700;
	color: white;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	animation: logoFloat 3s ease-in-out infinite;
}
.LoginIcon img{
	width: 90px;
}
@keyframes logoFloat {

	0%,
	100% {
		transform: translateY(0) rotate(0deg);
	}

	50% {
		transform: translateY(-3px) rotate(2deg);
	}
}

.login-title {
	font-size: 26px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 2px;
	    color: #e0e0e4;
    background: -webkit-linear-gradient(left, #9e66ec, #dfc599);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.login-title img{
width: 28px;
    position: relative;
    top: -4px;
}
.login-subtitle {
    font-size: 16px;
    color: #c2c2c2;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 30px;
}

/* Form Styling */
.login-form {
	animation: formSlide 1.2s cubic-bezier(0.4, 0, 0.2, 1) both 0.4s;
}
@keyframes formSlide {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
.form-group {
	margin-bottom: 28px;
	position: relative;
}
.form-label {
	display: block;
	font-size: 15px;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 12px;
	transition: color 0.3s ease;
}
.input-container {
	position: relative;
	overflow: hidden;
	border-radius: 6px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	    background: #1F1E34;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
	    margin-bottom: 9px;
}
.input-container::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
}
.input-container.focused::before {
	left: 100%;
}
.form-input {
    width: 100%;
    height: 47px;
    background: none;
    border-radius: 6px;
    padding: 0 40px 3px 17px;
    font-size: 17px;
    color: var(--text-primary);
    outline: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}
.form-input::placeholder {
	 color: #DFC4FF;
	transition: all 0.3s ease;
	font-weight: 200;
	font-size: 15px;
}
.typing-demo {
  width: 100%;
  animation: typing 2s steps(22), blink .5s step-end  ;
  white-space: nowrap;
  overflow: hidden;
	background: none;
border: none;

}
@keyframes typing {
  from {
    width: 0
  }
}
@keyframes blink {
  50% {
    border-color: transparent
  }
}
.form-input {
    width: 100%;
    height: 45px;
	background: none;
    border-radius: 6px;
    padding: 0 40px 0px 17px;
    font-size: 15px;
    color: #DFC4FF;
    outline: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}
.form-input::placeholder {
	 color: #DFC4FF;
	transition: all 0.3s ease;
	font-weight:200;
	font-size: 15px;
}


.form-input:focus::placeholder {
	color: rgba(255, 255, 255, 0.6);

}
.inpIcon {
    position: absolute;
    z-index: 2;
    right: 11px;
    top: 15.5px;
}
.form-group h5{
    color: #DFC4FF;
    font-size: 14px;
    font-weight: 300;
    text-align: right;
}
.form-group h5 a{
	color: #9f53f9;
	text-decoration: none;
}
 .btn-one  {
	width: 100%;
	height: 47px;
	background-image: linear-gradient(to right, #3e0a9a 0%, #50166c 51%, #50166c 100%);
	border: none;
	border-radius: 6px;
	color: #DFC4FF;
	font-size: 15px;
	font-weight: 400;
	cursor: pointer;
	margin-bottom: 15px;
	position: relative;
	overflow: hidden;
	transition: all 2s;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.btn-one:hover {
	background-image: linear-gradient(to right, #50166c 0%, #50166c 51%, #3e0a9a 100%);
}
 .btn-two  {
	width: 100%;
	height: 47px;
	background: none;
	border: none;
	border-radius: 6px;
	color: #DFC4FF;
	font-size: 15px;
	font-weight: 400;
	cursor: pointer;
	margin-bottom: 10px;
	position: relative;
	overflow: hidden;
	transition: all 2s;
	 border: 1px solid #312d39;
}
.btn-two:hover {
	background-image: linear-gradient(to right, #50166c 0%, #50166c 51%, #3e0a9a 100%);
}
.btn-one a{
	font-size: 15px;
	color: #DFC4FF;
	text-decoration: none;
}
.btn-four  {
	width: 100%;
	height: 47px;
  padding-top: 12px;
	background-image: linear-gradient(to right, #3e0a9a 0%, #50166c 51%, #50166c 100%);
	border: none;
	border-radius: 6px;
	color: #DFC4FF;
	font-size: 15px;
	font-weight: 400;
	cursor: pointer;
	margin-bottom: 15px;
	position: relative;
	overflow: hidden;
	transition: all 2s;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.btn-four:hover {
	background-image: linear-gradient(to right, #50166c 0%, #50166c 51%, #3e0a9a 100%);
}
.trial{
	text-align: center;
	    color: #DFC4FF;
	 margin-top: 20px;
	position: relative;
	    margin-bottom: 13px;
}
.text-trial{
  color: #a1a1a1;
}
.trial::before{
content: "";
    border: 1px solid #312d39;
    position: absolute;
    top: 12px;
    width: 100%;
    left: 0;
}
.trial span{
background: #151425;
    position: relative;
    padding: 0 14px;
	    font-size: 14px;
}
.btmLogos{
    display: flex;
    margin-top: 10px;
    align-items: center;
    justify-content: center;
}
.logoBrdr{
    border: 1px solid #312d39;
    padding: 8px 18px;
    border-radius: 5px;
    margin-bottom: 0;
    min-height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
	    width: 40%;
}
.logoBrdr:hover{
    border: 1px solid #312d39;
}
.BrdrMarg{
	margin:  0 15px;
}
.logoBrdr img{
	width: 77px;
	max-width: 77px;
}



.carousel-box {
    max-width: 100%;
    height: 100%;
	padding-left: 33px;
	    overflow: hidden;
	background: #151425;
    }
    .carousel-text {
    margin-bottom: 60px;
    padding-right: 70px;
    }
    .carousel-text h5 {
    font-size: 34px;
    font-weight: 700;
    line-height: 40px;
    min-height: 100px;
    margin: 0;
    color: #e0e0e4;
    background: -webkit-linear-gradient(left, #3d2a65, #4f444f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    }
    .carousel-indicators {
    position: absolute;
    top: 0;
    left: 35px;
    margin: 0;
    justify-content: left;
    margin-top: 140px;
    }
    .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 200px !important;
    background-color: #ffffff;
    opacity: 0.3;
    margin: 0 3px;
    box-sizing: border-box;
    border: none;
    }
    .carousel-indicators .active {
      opacity: 1;
    }
    .carousel-item img {
      width: 100%;
      display: block;
    }
    .carousel-inner {
    position: relative;
        padding-top: 30px;
    }
.ImgHeight{
	    max-height: 435px;
}
.backBtn {
    position: absolute;
    left: 0;
margin-left: -22px;
    margin-top: -22px;
}

.backBtn img {
    width: 30px;
}
.backBtn img:hover {
    opacity: 0.7;
}
  .otp-container {
      text-align: center;
	     color: #DFC4FF;
    }
    .otp-container h2 {
      color: #0d1a78;
      margin-bottom: 15px;
    }
    .otp-input {
    width: 45px;
    height: 45px;
    margin: 5px;
    font-size: 22px;
    text-align: center;
    border: 1px solid #4e2382;
    border-radius: 6px;
    outline: none;
    transition: all 0.2s;
    background: none;
		color: #a069ea;
    }
    .otp-input:focus {
      border-color: #007bff;
      box-shadow: 0 0 5px #007bff;
    }

  .otp-container h3 {
      font-size: 24px;
    }

  .otp-container h4 {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 20px;
    }
  .otp-container p {
    font-size: 13px;
    margin-top: 7px;
    margin-bottom: 30px;
    }
  .otp-container p a {
    font-size: 13px;
   color: #DFC4FF;
	  text-decoration: underline;
    }
.btn-center{
	text-align: center;
}
.btWidth{
	width: 70%;
	margin: auto;
}

    .sms-btn {
display: flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    padding: 9px 30px;
    color: #d5bdfd;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
		    text-decoration: none;
    }

    .sms-btn img {
      width: 22px;
      height: 22px;
    }
    .tick {
      display: none;
      width: 22px;
      height: 22px;
    }

    .active-sms {
      background: linear-gradient(90deg, #5e2ced, #9c27b0);
      color: #fff;
      border: none;
    }

    .active-sms .tick {
      display: inline-block;
    }


.crm-btn {
display: flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    padding: 9px 30px;
    color: #d5bdfd;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
	    text-decoration: none;
    }

    .crm-btn img {
      width: 22px;
      height: 22px;
    }
    .tick {
      display: none;
      width: 22px;
      height: 22px;
    }

    .active-crm {
      background: linear-gradient(90deg, #5e2ced, #9c27b0);
      color: #fff;
      border: none;
    }

    .active-crm .tick {
      display: inline-block;
    }

.smsBtnbg{
    display: flex;
    margin-bottom: 35px;
    margin-top: 35px;
    align-items: center;
    gap: 22px;
    justify-content: center;
}
.conghead{
	text-align: center;
	    margin-bottom: 40px;
}
.conghead h3{
color: #e0e0e4;
    background: -webkit-linear-gradient(left, #9e66ec, #dfc599);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 20px;
}
.cngico{
margin-top: 66px;
    margin-bottom: 50px;
}
.conghead p{
	color: #DFC4FF;
}
.conghead p img{
    width: 20px;
    margin-right: 8px;
    position: relative;
    top: -1px;
}
.Lests {
    margin-left: 70px;
    margin-bottom: 40px;
    margin-top: 80px;
}
.Lests h3{
	margin-top: 30px;
}
.Lests h3{
color: #e0e0e4;
    background: -webkit-linear-gradient(left, #9e66ec, #dfc599);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 21px;
    margin-bottom: 25px;
}

 .step-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .step {
      display: flex;
      align-items: center;
      font-size: 16px;
      margin-bottom: 18px;
      color: #888;
    }

    .step.completed {
      color: #fff;
    }

    .step .icon {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 12px;
      font-size: 14px;
      flex-shrink: 0;
    }

    /* Completed step circle */
    .step.completed .icon {
      background: #20c997;
      color: white;
    }

    /* Progress loader circle */
    .step.in-progress .icon {
      border: 3px solid #20c997;
      border-top: 3px solid transparent;
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }


    .buttonCenter{
      max-width: 270px;
      margin:0 auto;
    }
.google-icon {
      position: relative;
      top: -2px;
  }

  .SepBlock span{
    font-size: 15px;
    text-align: center;
    color: #848396;
    background: #151425;
    position: relative;
    padding: 0 10px;
  }
  .SepBlock{
    text-align: center;
    position: relative;
    margin-bottom: 12px;
}
.SepBlock::before{
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  background: #2f2d50;
  width: 100%;
  height: 1px;
}
.inp_alert{
  margin: 0;
  color: #b33232;
  position: relative;
  top: -5px;
  font-size: 14px;
}
.Acc_Sign {
  color: #DFC4FF;
  font-size: 14px;
  font-weight: 300;
  text-align: right;
  float: right;
  position: relative;
  top: -3px;
}
.Acc_Sign a{
  text-decoration: none;
  font-weight: 800;
}
input::placeholder {
  font-size: 15px !important;
}
.Passw::placeholder {
  font-weight: 800;
  font-size: 20px !important;
  border-radius: 200px;
  letter-spacing: 3px;
}
.Passw{
  font-weight: 800;
  font-size: 20px !important;
}
.country_code{
  background: #1e1e2f;
  padding: 10px 0;
  position: absolute;
  z-index: 10;
  color: #DFC4FF;
  left: 17px;
  padding-right: 7px;
  border-right: 1px solid #383851;
}
.country_txt{
  padding-left:54px;
}

