.bh-auth__recaptcha {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}




/* Toast Notifications */
/* BorgHive Toast */
.bh-toast {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  z-index: 999999 !important;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.bh-toast-show {
  transform: translateX(0);
}

.bh-toast-success {
  border-left: 4px solid #10b981;
}

.bh-toast-error {
  border-left: 4px solid #ef4444;
}

.bh-toast-info {
  border-left: 4px solid #3b82f6;
}

.bh-toast-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}

.bh-toast-message {
  color: #111827;
  font-size: 0.875rem;
  font-weight: 500;
}

.bh-toast-close {
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  font-size: 1.25rem;
  padding: 0;
  margin-left: 1rem;
}

.bh-toast-close:hover {
  color: #374151;
}



.auth-error {
    margin-top: 4px;
    font-size: 13px;
    color: #dc3545; 
    min-height: 16px; 
}





/* Welcome Back Modal */
.bh-welcome {
  max-width: 420px;
  padding: 0;
  border-radius: 1.5rem;
  background: #fff;
  color: #0f172a;
  box-shadow: 0 50px 120px rgba(15, 23, 42, 0.25);
  overflow: hidden;
}

/* Header */
.bh-welcome__header {
  padding: 2rem 2.5rem 1.5rem;
  background: linear-gradient(135deg, #6f7dfa, #9c5bff);
  color: #fff;
  text-align: center;
}

.bh-welcome__eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
  margin: 0 0 0.35rem;
}

.bh-welcome__header h3 {
  margin: 0;
  font-size: 1.9rem;
  font-weight: 700;
}

/* Body */
.bh-welcome__body {
  padding: 2rem 2.5rem;
  text-align: center;
  background: linear-gradient(180deg, #0b0f24 0%, #111936 100%);
  color: #e4e8ff;
}

/* Avatar */
.bh-welcome__avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;
  font-weight: 600;
  color: white;

  background: linear-gradient(135deg, #6f7dfa, #9c5bff);
  background-size: cover;
  background-position: center;

  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35);
}

/* Name */
.bh-welcome__name {
  font-size: 1.75rem;
  margin-top: 1rem;
  margin-bottom: 0.25rem;
}

.bh-welcome__subtitle {
  color: #9aa4d5;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* Recaptcha */
.bh-welcome__recaptcha {
  margin: 1rem auto 1.5rem;
  display: flex;
  justify-content: center;
}

/* Buttons */
.bh-welcome__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}


.bh-button--primary {
  background: linear-gradient(135deg, #6b7bff, #8f46ff);
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  color: #fff;
  font-weight: 600;
  border: none;
  box-shadow: 0 18px 30px rgba(130, 88, 255, 0.3);
}

.bh-button--primary:hover:not(:disabled) {
  box-shadow: 0 24px 36px rgba(130, 88, 255, 0.35);
  transform: translateY(-2px);
}

.bh-button--primary:disabled,
.bh-button--primary.disabled {
  background: linear-gradient(135deg, #a2a2a2, #7a7a7a);
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
}




/* Forgot Password Modal */
.bh-forgot {
  max-width: 460px;
  padding: 0;
  border-radius: 1.5rem;
  background: #fff;
  color: #0f172a;
  box-shadow: 0 50px 120px rgba(15, 23, 42, 0.28);
  overflow: hidden;
}

/* Header */
.bh-forgot__header {
  padding: 2rem 2.5rem 1.5rem;
  background: linear-gradient(135deg, #6f7dfa, #9c5bff);
  color: #fff;
}

.bh-forgot__eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
  opacity: 0.9;
}

.bh-forgot__header h3 {
  margin: 0 0 1rem;
  font-size: 2rem;
  font-weight: 700;
}

/* Body */
.bh-forgot__body {
  padding: 2.25rem 2.5rem;
  background: linear-gradient(180deg, #0b0f24 0%, #111936 100%);
  color: #e4e8ff;
  max-height: 70vh;
  overflow-y: auto;
}

/* Form fields */
.bh-forgot__label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #cdd7ff;
}

.bh-forgot__field {
  display: flex;
  align-items: center;
  position: relative;
  gap: 0.75rem;
  margin-bottom: 1rem;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.bh-forgot__field i {
  color: #9da7d9;
}

.bh-forgot__field input {
  width: 100%;
  padding-right: 3rem;
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
}

.bh-forgot__field button {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* Error text */
.bh-forgot__error {
  font-size: 0.85rem;
  margin-top: 0.5rem;
  color: #ff6b6b;
}

/* Feedback global */
.bh-forgot__feedback {
  margin-top: 1rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: #ff6b6b;
}

/* Spinner */
.bh-forgot__loading {
  text-align: center;
}

.bh-forgot__spinner {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.2);
  border-top-color: #fff;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}


.bh-spacer {
  height: 14px;
  visibility: hidden; 
}



.bh-button--ghost:hover:not(:disabled) {
  background: #EEF2FF;
  color: var(--bh-primary);
}

/* Disabled state */
.bh-button--ghost:disabled,
.bh-button--ghost.disabled {
  border-color: #c7c7c7;
  color: #aaa;
  background: transparent;
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none; 
}



.bh-forgot__error {
  color: #ff4d4f;
  font-size: 0.85rem;
  margin-top: 4px;
  display: none;
}



.bh-button--signup:disabled,
.bh-button--signup.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;        
  transform: none;         
  pointer-events: none;   
}


/* Loading Indicator */
.bh-loading {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(8, 12, 30, 0.55); 
  backdrop-filter: blur(6px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.25s ease;
}

.bh-loading__container {
  background: linear-gradient(180deg, #0b0f24 0%, #111936 100%);
  padding: 2rem 2.5rem;
  border-radius: 1.5rem;
  color: #e4e8ff;
  text-align: center;
  box-shadow: 0 40px 120px rgba(3, 6, 18, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.05);
  animation: bh-loading-appear 0.25s ease;
}


.bh-loading__spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.18);
  border-top: 4px solid #9c5bff; 
  border-radius: 50%;
  animation: bh-spin 0.8s linear infinite;
  margin: 0 auto;
}


.bh-loading__text {
  margin-top: 1rem;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: #cdd7ff;
  opacity: 0.9;
  animation: bh-fade 1.2s ease-in-out infinite alternate;
}


@keyframes bh-spin {
  to {
    transform: rotate(360deg);
  }
}


@keyframes bh-fade {
  from {
    opacity: 0.55;
  }
  to {
    opacity: 1;
  }
}


@keyframes bh-loading-appear {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}




/* Confirmation Modal */
.bh-confirm {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.bh-confirm.open {
  display: flex;
}

.bh-confirm__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.bh-confirm__container {
  position: relative;
  background: #ffffff;
  padding: 1.75rem;
  border-radius: 16px;
  width: 95%;
  max-width: 420px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.25);
  animation: fadeInConfirm 0.2s ease;
}

@keyframes fadeInConfirm {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1);   }
}

.bh-confirm__actions {
  margin-top: 1.25rem;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

#bh-confirm-message {
  font-size: 1rem;
  margin: 0;
  color: #333;
}




/* .bh-pill.coming-soon {
  border-style: dashed;
  border-color: var(--cloud);
  background: #f8f9fc;
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none; 
  box-shadow: none;
}

.bh-pill.coming-soon i {
  color: var(--ink);
  opacity: 0.6;
}


.bh-pill.coming-soon::after {
  content: "Coming soon";
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.8;
  margin-left: 0.3rem;
} */


.bh-pill.coming-soon {
  border-style: dashed;
  border-color: var(--cloud-dark, #c8d0d9);
  background: #f2f4f7;
  color: var(--ink-light, #6b7280);
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
  opacity: 1; 
}

.bh-pill.coming-soon i {
  color: var(--ink-light, #6b7280);
}

.bh-pill.coming-soon::after {
  content: "Coming soon";
  display: inline-block;
  padding: 0.15rem 0.5rem;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--ink-light, #6b7280);
  margin-left: 0.45rem;
}

/* Video YT HOMEPAGE */

.bh-video__iframe-wrapper {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
}

.bh-video__iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}


.bh-video__stage::before,
.bh-video__stage::after {
  pointer-events: none; 
}


.bh-steps__code {
  max-width: 610px;
}





/* =================
    PRICING PAGE - stiluri current package, unavalilable pack
    ================= */


/* FREE indisponibil */
.bh-price-card.bh-unavailable {
  position: relative;
  opacity: 0.55;
  pointer-events: none;
  filter: grayscale(0.3);
}

.bh-price-card.bh-unavailable::after {
  content: "Unavailable";
  position: absolute;
  top: 12px;
  right: 12px;
  background: #e11d48;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.bh-price-card.bh-unavailable button {
  background: #d1d5db !important;
  color: #6b7280 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}


/* PLAN CURENT — combinație varianta A + B */
.bh-price-card.bh-current-plan {
  border: 2px solid #6366f1 !important;
  background: #eef2ff !important;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.25) !important;
  position: relative;
}

.bh-price-card.bh-current-plan::before {
  content: "CURRENT PLAN";
  position: absolute;
  top: -12px;
  left: 16px;
  background: #eef2ff;
  color: #4338ca;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.75rem;
}


.bh-price-card.bh-current-plan button {
  background: #6366f1 !important;
  color: white !important;
  pointer-events: none !important;
  cursor: default !important;
}


.bh-price-card.bh-current-plan:hover {
  transform: none !important;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.25) !important;
}



.bh-gpt-breakdown {
  background: #f8f9ff;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  border: 1px solid #e0e3fa;
}

.bh-gpt-breakdown__title {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  color: #4f46e5;
}

