/*
  Main styles for The Memo landing page
  Tailwind CSS is used via CDN, this file is for any custom overrides
  if needed and to satisfy the directory structure constraint.
*/

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Custom form autofill styling to match minimal aesthetic */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    -webkit-text-fill-color: black !important;
}