@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide-in {
  animation: slideIn 0.5s ease-out forwards;
}

.glow-path {
  stroke-dasharray: 450;
  stroke-dashoffset: 450;
  opacity: 0;
  transition: opacity 1.2s;
}

.group:hover .glow-path {
  opacity: 1;
  animation: dash 2s linear forwards;
}

@keyframes dash {
  from {
    stroke-dashoffset: 450;
  }
  to {
    stroke-dashoffset: -450;
    opacity: 0;
  }
}

.sig-glow-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  opacity: 0;
  transition: opacity 1.2s;
}

.signature-container:hover .sig-glow-path {
  opacity: 1;
  animation: sig-dash 2.5s ease-in forwards;
}

.sig-base-path {
  opacity: 1;
}

@keyframes sig-dash {
  0% {
    stroke-dashoffset: 1000;
    opacity: 1;
  }
  65% {
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@tailwind base;
@tailwind components;
@tailwind utilities;

/*

@layer components {
  .btn-primary {
    @apply py-2 px-4 bg-blue-200;
  }
}

*/
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
