@import "tailwindcss";


body {
  font-family: "nunito sans" !important;
}

input {
  font-size: 13px !important;
}

.anchor_tag {
  text-decoration: none;
  color: #0084A5;
  font-size: 13px;
  transition: all 0.3s ease;
}

.anchor_tag:hover {
  text-decoration: underline !important;
}

.submit_button {
  width: 50%;
  margin: 0 auto !important;
  background: #0084A5;
  padding: 3px 0;
  text-align: center;
  color: #fff;
  font-size: 16px !important;
  font-weight: 400;
  border-radius: 16px;
  transition: all 0.3s ease;
  display: block;
}

.submit_button:hover {
  background: #006987;
}

.submit_button_1 {
  width: 170px;
  padding: 8px 0;
}

.video_image {
  width: 100%;
  height: 160px;
  background-image: url("../../public/bg_img.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.register_link a {
  text-decoration: none;
  color: #006987;
  font-weight: 600;
}

.register_link {
  font-size: 13px !important;
}

.footer_link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer_link a {
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  color: #1E222A !important;
}

.auth-form {
  max-width: 400px;
}

.quote {
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .auth-form {
    position: relative;
    right: inherit;
    bottom: inherit;
    margin: 0 auto;
  }

}

@media screen and (min-width: 403px) and (max-width: 768px) {
  .right-quote {
    right: 0;
  }
}

@media screen and (min-width: 428px) and (max-width: 768px) {
  .left-quote {
    left: -30px;
  }
}


@media (max-width: 568px) {
  .submit_button_1 {
    width: 130px !important;
  }

  .register_link a {
    font-size: 14px !important;
  }

}
.captcha-wrapper svg {
  width: 90px !important;
  height: 32px !important;
}



@custom-variant dark (&:where(.dark, .dark *));

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.post-scrollbar {
  /* optional padding for inner content */
  padding-right: 4px;
}

/* For Webkit browsers (Chrome, Edge, Safari) */
.post-scrollbar::-webkit-scrollbar {
  width: 6px; /* scrollbar width */
}

.post-scrollbar::-webkit-scrollbar-track {
  background: #1f2937; /* dark track color */
  border-radius: 3px;
}

.post-scrollbar::-webkit-scrollbar-thumb {
  background-color: #4b5563; /* thumb color */
  border-radius: 3px;
  border: 1px solid #111827; /* optional border to match background */
}

.post-scrollbar::-webkit-scrollbar-thumb:hover {
  background-color: #6b7280; /* hover color */
}

/* For Firefox */
.post-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: #4b5563 #1f2937; /* thumb track */
}

.my-idea-scroll-bar {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; 
}

.my-idea-scroll-bar::-webkit-scrollbar {
  display: none;
}

@keyframes likePop {
  0% { transform: scale(1); }
  50% { transform: scale(1.5); }
  100% { transform: scale(1); }
}

.animate-likePop {
  animation: likePop 0.5s ease-in-out;
}

@keyframes dislikePop {
  0% { transform: scale(1); }
  30% { transform: scale(1.3) rotate(-15deg); }
  50% { transform: scale(1.5) rotate(15deg); }
  100% { transform: scale(1) rotate(0deg); }
}

.animate-dislikePop {
  animation: dislikePop 0.5s ease-in-out;
}


/* Loader Default (Light Mode) */
.loader {
  width: 60px;
  aspect-ratio: 2;
  --loader-color: #000; /* black */
  --_g: no-repeat radial-gradient(circle closest-side, var(--loader-color) 90%, #0000);
  background:
    var(--_g) 0% 50%,
    var(--_g) 50% 50%,
    var(--_g) 100% 50%;
  background-size: calc(100%/3) 50%;
  animation: l3 1s infinite linear;
}

.dark .icon-inactive {
filter: invert(1);
 }

.dark .loader {
  --loader-color: #fff;  
}

@keyframes l3 {
    20%{background-position:0%   0%, 50%  50%,100%  50%}
    40%{background-position:0% 100%, 50%   0%,100%  50%}
    60%{background-position:0%  50%, 50% 100%,100%   0%}
    80%{background-position:0%  50%, 50%  50%,100% 100%}
}

.custom-scrollbar::-webkit-scrollbar {
  width: 6px; /* scrollbar width */
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent; /* track color */
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: #0084a5; /* thumb color */
  border-radius: 9999px; /* rounded thumb */
  border: 2px solid transparent; /* optional for spacing */
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background-color: #006f87; /* hover effect */
}

/* Hide scrollbar but keep functionality */
.no-scrollbar {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.no-scrollbar::-webkit-scrollbar {
  display: none;  /* Chrome, Safari and Opera */
}

/* Alternative: Thin transparent scrollbar */
.thin-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}

.thin-scrollbar::-webkit-scrollbar {
  width: 4px;
}

.thin-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.thin-scrollbar::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.thin-scrollbar::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

/* Dark mode support */
.dark .thin-scrollbar::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.1);
}

.dark .thin-scrollbar::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.2);
}


@keyframes highlight-border {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 132, 165, 0);
    border-color: rgba(0, 132, 165, 0.3);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(0, 132, 165, 0.3);
    border-color: rgba(0, 132, 165, 0.8);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 132, 165, 0);
    border-color: rgba(0, 132, 165, 0.3);
  }
}



/* Animation वाली classes हटाएं और permanent highlight classes रखें */
.permanent-highlight-like {
  border-color: #0084a5 !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.permanent-highlight-dislike {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}