/* Body Styling */
body {
    height: 100% !important;
    --tw-bg-opacity: 1;
    background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
}

label{
  color: white !important;
}



/* ELEMENTS============================================== */
/*---------------------- Button Styling ----------------*/
.btn,
button {
    --green: #1BFD9C !important;
    font-size: 16px !important;
    padding: 0.6em 2.2em !important;
    letter-spacing: 0.04em !important;
    position: relative !important;
    display: inline-block !important;
    font-family: inherit !important;
    border-radius: 0.4em !important;
    overflow: hidden !important;
    transition: all 0.2s !important;
    line-height: 1.4em !important;
    border: 1px solid var(--green) !important;
    background: rgba(27, 253, 156, 0.05) !important;
    color: var(--green) !important;
    box-shadow: 0 0 5px rgba(27, 253, 156, 0.2) !important;
  }

  button:hover {
    color: #82ffc9 !important;
    box-shadow: 0 0 8px rgba(27, 253, 156, 0.3) !important;
    background: rgba(27, 253, 156, 0.08) !important;
  }

  button:before {
    content: "" !important;
    position: absolute !important;
    left: -4em !important;
    width: 4em !important;
    height: 100% !important;
    top: 0 !important;
    transition: transform .9s ease-in-out !important;
    background: linear-gradient(to right, transparent 1%, rgba(27, 253, 156, 0.1) 40%,rgba(27, 253, 156, 0.1) 60% , transparent 100%) !important;
  }

  button:hover:before {
    transform: translateX(15em) !important;
  }

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -4em;
  width: 6em;
  height: 120%;
  transform: translateY(-50%);
  background: linear-gradient(to right, transparent 1%, rgba(27, 253, 156, 0.1) 40%,rgba(27, 253, 156, 0.1) 60% , transparent 100%) !important;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.btn:hover::before {
  transform: translate(15em, -50%);
  opacity: 0;
}

@media (max-width: 767px) {
  .nav-custom-button {
    display: none !important;
  }
}


/* ----------------Blinking Logo------------------- */
.blinking-caret {
  animation: blink 1.1s step-start infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}
