
@import url('https://fonts.googleapis.com/css2?family=Share+Tech&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

.top-login-circle-logo {
  width: 130px;
  height: 130px;
  filter: drop-shadow(0 4px 6px rgba(255,255,255,1));
  border: 1px solid #7367f0;
  border-radius: 50%;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.6);
  object-fit: contain;
}
.authentication-wrapper.authentication-cover .authentication-inner {
    height: 100vh;
    margin: auto 0;
}
.light-style .authentication-wrapper .authentication-bg {
  position: relative;
  background-color: transparent;
  background-image: url('/assets/img/illustrations/auth-right.png') !important;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}
.light-style .authentication-wrapper .authentication-bg::after {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.top-login-circle-section .w-px-400,
.top-login-circle-holder {
  position: relative;
  z-index: 2;
}


.top-login-circle-section p,
.top-login-circle-section label,
.top-login-circle-section h4 {
  color: #fff;
}

.top-login-circle-section input {
  color: #fff !important;
}

#formAuthentication #userTypeSelect:focus,
.top-login-circle-section #formAuthentication span:focus,
.top-login-circle-section #login-password:focus ,
.top-login-circle-section #formAuthentication input,
.top-login-circle-section input:focus {
  border-color: #fff !important;
}
.top-login-circle-section #formAuthentication .form-password-toggle span:focus {
  border-color: #fff !important;
}
.top-login-circle-section #formAuthentication .form-password-toggle span i {
  color: #fff;
}

input::placeholder {
  color: white !important;
  opacity: 1 !important;
}
input::-moz-placeholder {
  color: white !important;
}
input::-ms-input-placeholder {
  color: white !important;
}

select option {
  color: black;
}

#formAuthentication #userTypeSelect {
  color: white !important;
  background-color: transparent;
  padding: 5px 15px;
  border: 1px solid #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
#formAuthentication #userTypeSelect option[disabled][selected] {
  color: #fff !important;
  opacity: 1;
}
.create-other-auth-link a span {
  color: aqua;
  font-weight: 700;
}
.form-password-toggle .input-group-text:hover,
.form-password-toggle .input-group-text {
  border: 1px solid #fff !important;
}
#formAuthentication .input-group:focus-within .form-control,
#formAuthentication .input-group:focus-within .input-group-text {
    border-color: #fff !important;
}

/* text typing animation css */
.animate-typing-text {
  font-size: 2rem;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid rgba(255, 255, 255, 0.56);
  width: 0ch;
  animation: typingLoop 3s steps(40, end) infinite alternate, blink 0.5s step-end infinite;
}

input:-webkit-autofill {
  -webkit-text-fill-color: #fff !important; /* white text */
  caret-color: white !important;
  transition: background-color 5000s ease-in-out 0s;
}

@keyframes typingLoop {
  from {
    width: 0ch;
  }
  to {
    width: 40ch;
  }
}

@keyframes blink {
  0%, 100% { border-color: transparent; }
  50%      { border-color: rgba(255, 255, 255, 0.75); }
}


.animate-typing-text {
  font-family: "Share Tech", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 60px;
}
.autho-rbn-title,
.autho-rbn-sub-title {
  font-family: "Rubik", sans-serif;
  font-style: normal;
  font-weight: 400
}
.autho-rbn-title {
  font-weight: 700;
}
@media (max-width: 1550px) {
  .animate-typing-text {
    font-size: 50px;
  }
}
@media (max-width: 1366px) {
  .animate-typing-text {
    font-size: 40px;
  }
}
@media (max-width: 1199px) {
  .animate-typing-text {
    font-size: 34px;
  }
}

@media (max-width: 991px) {
  .authentication-bg.top-login-circle-section {
    position: relative;
    background-image: url('/assets/img/illustrations/auth-right.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
  }

  .authentication-bg.top-login-circle-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 0;
  }

}

