



/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

@font-face {
  font-family: Poppins-Regular;
  src: url('../fonts/poppins/Poppins-Regular.ttf'); 
}

@font-face {
  font-family: Poppins-Medium;
  src: url('../fonts/poppins/Poppins-Medium.ttf'); 
}

@font-face {
  font-family: Poppins-Bold;
  src: url('../fonts/poppins/Poppins-Bold.ttf'); 
}

@font-face {
  font-family: Poppins-SemiBold;
  src: url('../fonts/poppins/Poppins-SemiBold.ttf'); 
}




/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

* {
	margin: 0px; 
	padding: 0px; 
	box-sizing: border-box;
}

body, html {
	height: 100%;
	font-family: Poppins-Regular, sans-serif;
}

/*---------------------------------------------*/
a {
	font-family: Poppins-Regular;
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

a:focus {
	outline: none !important;
}

a:hover {
	text-decoration: none;
  color: #a64bf4;
}

/*---------------------------------------------*/
h1,h2,h3,h4,h5,h6 {
	margin: 0px;
}

p {
	font-family: Poppins-Regular;
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
}

ul, li {
	margin: 0px;
	list-style-type: none;
}


/*---------------------------------------------*/
input {
	outline: none;
	border: none;
}

textarea {
  outline: none;
  border: none;
}

textarea:focus, input:focus {
  border-color: transparent !important;
}

input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }
input:focus:-ms-input-placeholder { color:transparent; }

textarea:focus::-webkit-input-placeholder { color:transparent; }
textarea:focus:-moz-placeholder { color:transparent; }
textarea:focus::-moz-placeholder { color:transparent; }
textarea:focus:-ms-input-placeholder { color:transparent; }

input::-webkit-input-placeholder { color: #adadad;}
input:-moz-placeholder { color: #adadad;}
input::-moz-placeholder { color: #adadad;}
input:-ms-input-placeholder { color: #adadad;}

textarea::-webkit-input-placeholder { color: #adadad;}
textarea:-moz-placeholder { color: #adadad;}
textarea::-moz-placeholder { color: #adadad;}
textarea:-ms-input-placeholder { color: #adadad;}

/*---------------------------------------------*/
button {
	outline: none !important;
	border: none;
	background: transparent;
}
button:hover {
	cursor: pointer;
}
.wrap-login100-form-btn input{
  outline: none !important;
	border: none;
	background: transparent;
}
.wrap-login100-form-btn input:hover{
  cursor: pointer;
}

iframe {
	border: none !important;
}

/*//////////////////////////////////////////////////////////////////
[ Utility ]*/
.txt1 {
  font-family: Poppins-Regular;
  font-size: 14px;
  line-height: 1.5;
  color: #666666;
}

.txt2 {
  font-family: Poppins-Regular;
  font-size: 14px;
  line-height: 1.5;
  color: #333333;
  text-transform: uppercase;
}

.bg1 {background-color: #000000}
.bg2 {background-color: #e14539}
.bg3 {background-color: #ea4335}



/*//////////////////////////////////////////////////////////////////
[ login ]*/
.limiter {
  width: 100%;
  margin: 0 auto;
}
.container_image {
  background-repeat: no-repeat;
  /* background-position: right 68% bottom 83%;
  background-size: cover; */
  background-position: center !important;
  background-size: 798px 550px;
  width: calc(100% - 462px);
  background-color: #fff !important;  
  position: relative;
  /* z-index: 1; */
}
.container_image::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #e8519e;
  background: -webkit-linear-gradient(bottom, #e8519e, #c77ff2);
  background: -o-linear-gradient(bottom, #e8519e, #c77ff2);
  background: -moz-linear-gradient(bottom, #e8519e, #c77ff2);
  background: linear-gradient(bottom, #e8519e, #c77ff2);
  opacity: 0.8;
}
.wrapper-b-content {
  display:grid;
  grid-template-columns: auto auto auto;
}

.container-login100 {
  width: 100%;  
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.error-message{
  color: red;
  /* max-width:500px;
  text-align:center; */
  word-break: break-word;
}
.wrap-login100 {
  width: 520px;
  background: #fff;
  /* border-radius: 10px; */
  overflow: hidden;
}
.wrap-signup100{
  width: 462px;
  background: #fff;
  /* border-radius: 10px; */
  overflow: hidden;
}


/*------------------------------------------------------------------
[ Form ]*/

.login100-form {
  width: 100%;
}

.login100-form-title {
  display: block;
  font-family: Poppins-Bold;
  font-size: 39px;
  color: #333333;
  line-height: 1.2;
  text-align: left;
}



/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
  width: 100%;
  position: relative;
  border-bottom: 2px solid #d9d9d9;
}

.label-input100 {
  font-family: Poppins-Regular;
  font-size: 14px;
  color: #333333;
  line-height: 1.5;
  padding-left: 7px;
}

.error-label-input100 {
  font-family: Poppins-Regular;
  font-size: 14px;
  color: #d43737;
  line-height: 1.5;
  padding-left: 7px;
  font-weight: bold;
  display:none
}
.active{
  display: block !important
}

.error-label-input100::before {
  content: "\f06a";
  font-family: FontAwesome;
  color: #c80000;
  font-size: 16px;
  bottom: calc((100% - 20px) / 2);
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
  transform: translateY(50%);
  right: 8px;
}

.input100 {
  font-family: Poppins-Medium;
  font-size: 16px;
  color: #333333;
  line-height: 1.2;

  display: block;
  width: 100%;
  height: 55px;
  background: transparent;
  padding: 0 7px 0 43px;
}


/*---------------------------------------------*/
.focus-input-right-hide:after{
  content: attr(data-symbol);
  font-family: Material-Design-Iconic-Font;
  color: #adadad;
  font-size: 22px;
}

.focus-input-right-hide{
  /* position: relative; */
  bottom: -5px;
  /* left: 360px; */
}

.focus-input-right-show:after{
  content: attr(data-symbol);
  font-family: Material-Design-Iconic-Font;
  color: #adadad;
  font-size: 22px;
}

.focus-input-right-show{
  /* position: relative; */
  bottom: 15px;
  left: 360px;
}

.focus-input100 {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-input100::after {
  content: attr(data-symbol);
  font-family: Material-Design-Iconic-Font;
  color: #adadad;
  font-size: 22px;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  /* align-items: center; */
  justify-content: center;
  position: absolute;
  height: calc(100% - 20px);
  bottom: -13px;
  left: 0;
  padding-left: 13px;
  padding-top: 3px;
}

.focus-input100::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #7f7f7f;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}


.input100:focus + .focus-input100::before {
  width: 100%;
}

.has-val.input100 + .focus-input100::before {
  width: 100%;
}

.input100:focus + .focus-input100::after {
  color: #a64bf4;
}

.has-val.input100 + .focus-input100::after {
  color: #a64bf4;
}


/*------------------------------------------------------------------
[ Button ]*/
.container-login100-form-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.wrap-login100-form-btn {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 25px;
  overflow: hidden;
  margin: 0 auto;

  box-shadow: 0 5px 30px 0px rgba(3, 216, 222, 0.2);
  -moz-box-shadow: 0 5px 30px 0px rgba(3, 216, 222, 0.2);
  -webkit-box-shadow: 0 5px 30px 0px rgba(3, 216, 222, 0.2);
  -o-box-shadow: 0 5px 30px 0px rgba(3, 216, 222, 0.2);
  -ms-box-shadow: 0 5px 30px 0px rgba(3, 216, 222, 0.2);
}

.login100-form-bgbtn {
  position: absolute;
  z-index: -1;
  width: 300%;
  height: 100%;
  background: #a64bf4;
  background: -webkit-linear-gradient(right, #00dbde, #fc00ff, #00dbde, #fc00ff);
  background: -o-linear-gradient(right, #00dbde, #fc00ff, #00dbde, #fc00ff);
  background: -moz-linear-gradient(right, #00dbde, #fc00ff, #00dbde, #fc00ff);
  background: linear-gradient(right, #00dbde, #fc00ff, #00dbde, #fc00ff);
  top: 0;
  left: -100%;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.login100-form-btn {
  font-family: Poppins-Medium;
  font-size: 16px;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  height: 50px;
}

.wrap-login100-form-btn:hover .login100-form-bgbtn {
  left: 0;
}


/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 2px;
  padding: 4px 25px 4px 10px;
  bottom: calc((100% - 20px) / 2);
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
  transform: translateY(50%);
  right: 2px;
  pointer-events: none;

  font-family: Poppins-Regular;
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f06a";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 16px;
  bottom: calc((100% - 20px) / 2);
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
  transform: translateY(50%);
  right: 8px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}


/*//////////////////////////////////////////////////////////////////
[ Social item ]*/
.login100-social-item {
  font-size: 25px;
  color: #fff;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 5px;
}

.login100-social-item:hover {
  color: #fff;
  background-color: #333333;
}
.container_image span {
  position: absolute;
  bottom: 6%;
  right: 14%;
  color: #9e9ea7;
  font-size: 14px;
}
.container_image span a{
  color: #9e9ea7;
  text-decoration: underline;
}
/* .wrap-input100 .fa-info{
  padding: 0 0 0 8px;
  font-size: 16px;
  margin: 0 0 10px 10px;
  color: #fff;
  background-color: #b37ab3;
  background-image: linear-gradient(#b37ab3, #4b99e7);
  width: 22px;
  border-radius: 0.8em;
  line-height: 22px;
}
.wrap-input100 .fa-info:before {
  padding-right: 21px;
} */
.signup-tooltip .fa-info-circle:before {
  content: "\f05a";
  padding: 1px 0 0 2px;
}
.signup-tooltip .fa-info-circle{
  font-size: 16px;
}
.signup-tooltip .fa-info-circle:hover{
  color:#0000ff;
}
.wrap-input100 .wrap-info-icon{
  padding: 0 7px 0 45px;
  width: 375px;
  text-overflow: ellipsis;
  overflow: hidden;
}
#loginForm .g-recaptcha {
  transform: scale(0.90);
  transform-origin: 0 0;
}
#loginForm .recaptcha-wrapper {
  display: grid;
  grid-template-columns: 263px 125px;
  grid-gap: 20px;
  line-height: 65px;
}

/* loader starts here */

.loader,
.loader:after {
  border-radius: 50%;
  width: 4em;
  height: 4em;
}
.loader {
  position:fixed;
  left: 80%;
  top: 32%;
  /* transform: translate(-80%,-32%); */
  text-indent: -9999em;
  z-index: 999999;
  cursor: none;
  border-top: 0.6em solid #a64bf4;
  border-right:  0.6em solid #a64bf4;
  border-bottom:  0.6em solid #a64bf4;
  border-left:  0.6em solid rgba(255, 255, 255, 0.2);;
  -webkit-animation: load 1.1s infinite linear;
  animation: load 1.1s infinite linear;
}
@-webkit-keyframes load {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* loader ends here */

/* setupfor2fa design starts here */
.split-two-fa {
  display: grid;
  grid-template-columns: 265px 20px 265px;
  grid-gap: 20px;
}
.wrap-2fa100{
  width: 700px;
  background-color: #fff;
}
.split-btn{
  color: #ff0000;
  font-weight: 900;
  line-height: 25;
}
#verificationcode{
  font-size: 15px;
  width: 100%;
  outline: 0;
  border: 1px solid;
  border-radius: 3px;
  padding: 6px 0px 6px 6px;
  margin:20px 0px;
  color:#ddd;
}
#verificationcode:focus{
  outline: auto;
  color:#ddd;
}
.verify-code{
  opacity: 0.1;
  pointer-events: none;
}
.split-two-fa .split-wrapper-content p {
  padding: 10px 0px;
}
#enable-mfa {
  width:60% !important;
  margin:10px 0px;
}
/* setupfor2fa design ends here */

/* twofa design starts here */
.twofa-verify-code{
  margin: 25px 0px;
}
.twofa-box-root {
  display: flex;
  align-items: center;
  justify-content: center;
}
.twofa-verify-code .twofa-verify-splitter {
  padding: 0 15px;
  color: white;
  font-size: 24px;
}
.twofa-box-root input {
  border: 1px solid #ddd;
  outline: #ddd solid 1px;
  width: 40px;
  height: 50px;
  background-color: #fff;
  border: none;
  font-size: 28px;
  text-align: center;
  font-weight: 200;
  color: #000000;
}
.twofa-box-root input::-webkit-outer-spin-button,
.twofa-box-root input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.twofa-box-root input:focus {
  border: 2px solid #a64bf4 !important;
}
.twofa-box-root input.twofa-box-input-right {
  border-bottom-right-radius: 7px;
  border-top-right-radius: 7px;
}
.twofa-box-root input.twofa-box-input-left {
  border-bottom-left-radius: 7px;
  border-top-left-radius: 7px;
}
.two-fa-container .wrap-login100-form-btn{
  width:80%;
}
.two-fa-container #twofa-verify-btn-disable{
    opacity:0.4;
    cursor: none !important;
}
.two-fa-container .twofa-verify-btn-enable{
  opacity:1;
  cursor: auto;
}
.disable-btn-2fa {
  opacity: 0.4;
  pointer-events: none;
}
.enable-btn-2fa {
  opacity: 1;
  pointer-events: auto;
}
input[type="number"]:nth-child(n+4) {
	order: 2;
}
.login100-form .twofa-splitter::before {
  content: '';
  height: 2px;
  width: 24px;
  margin: 0 0.45em;
  order: 1;
  background: #fff;
}

/* twofa design ends here */

/* login */
a {
  text-decoration: none;
}

.login-status {
  position: absolute;
  right: 3%;
  top: 8%;
  text-transform: capitalize;
}
.login-status a{
  text-decoration: none;
  color:#fff;
}
.wrap-input100 .wrapper-b-content.alert-validate::before {
  visibility: hidden !important;
}
.signup-tooltip {
  position: relative;
  display: inline-block;
}

.signup-tooltip .tooltiptext {
  visibility: hidden;
  width: 265px !important;
  height: 84px !important;
  background-color: #fff;
  color: #000;
  text-align: justify;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  left: 40px;
  top:0px;
  border: 1px solid #adadad;
}

.signup-tooltip:hover .tooltiptext {
  visibility: visible;
}
.container-wrap-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
/*//////////////////////////////////////////////////////////////////
[ Responsive ]*/

@media (max-width: 576px) {
  .wrap-login100 {
    padding-left: 15px;
    padding-right: 15px;
  }
  .wrap-login-100{
    padding-left: 15px;
    padding-right: 15px;
  }
  .two-fa-container h2 {
    font-size:18px;
  }
} 
@media (min-width: 320px) and (max-width:420px){
  .twofa-verify-code .twofa-verify-splitter {
    padding: 0 2px;
  }
}
@media (min-width: 320px) and (max-width:767px){
  .p-t-165 {
    padding-top: 50px !important;
  }
  .loader {
    left: 40% !important;
    top: 20% !important;
  }
  #loginForm .recaptcha-wrapper {
    grid-template-columns: auto !important;
    line-height: 0px !important;
  }
}
@media (min-width: 320px) and (max-width:700px){
  .split-two-fa {
    grid-template-columns: auto;
  }
  .split-btn{
    line-height: 0px !important;
  }
}
@media (min-width: 420px) and (max-width:767px){
  .container-login100 {
    justify-content: center !important;
  }
  .container_image {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width:991px){
  /* .container_image {
    background-size: 378px 345px !important;
  }  */
  .container_image {
    background-size: 360px 345px !important;
  } 
  .wrap-signup100 {
    width: 400px;
  }
  .container_image {
    width: calc(100% - 400px);
  }
  .container_image span {
    right: 25%;
    bottom: 14%;
  }
  .loader {
    left: 69% !important;
    top: 18% !important;
  }
  #loginForm .recaptcha-wrapper {
    grid-template-columns: auto !important;
    line-height: 0px !important;
  }
}
@media (min-width: 992px) and (max-width:1200px){
  .container_image {
    background-size: 542px 382px !important;
  }
  .loader{
    left: 73%;
  }
}  
