.logo {
  background: url("../img/mentorai-logo-wordmark-tagline.png") left center / contain no-repeat !important;
  color: transparent !important;
  display: inline-block;
  flex: 0 0 auto;
  font-size: 0 !important;
  height: 56px;
  line-height: 0 !important;
  overflow: hidden;
  text-decoration: none;
  text-indent: -9999px;
  white-space: nowrap;
  width: 210px;
}

.logo span {
  display: none !important;
}

@media (max-width: 640px) {
  .logo {
    height: 46px;
    width: 174px;
  }
}

.mentorai-page-loader {
  align-items: center;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 160ms ease, visibility 160ms ease;
  visibility: hidden;
  z-index: 99999;
}

.mentorai-page-loader.show {
  opacity: 1;
  visibility: visible;
}

.mentorai-loader-card {
  align-items: center;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.14);
  color: #111827;
  display: inline-flex;
  gap: 12px;
  min-width: 210px;
  padding: 14px 18px;
}

.mentorai-standard-spinner {
  animation: mentoraiStandardSpin 0.8s linear infinite;
  border: 3px solid #e5e7eb;
  border-radius: 999px;
  border-top-color: #2563eb;
  flex: 0 0 auto;
  height: 24px;
  width: 24px;
}

.mentorai-loader-text {
  color: #111827;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

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

@media (max-width: 640px) {
  .mentorai-loader-card {
    min-width: 0;
    padding: 12px 14px;
  }

  .mentorai-loader-text {
    font-size: 13px;
  }
}
