/* ========================================
   Modern Reset CSS 2026
   ======================================== */

/* Box sizing */

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */

* {
  margin: 0;
}
html{scroll-behavior: smooth;}
/* Body */

body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Media elements */

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  width: 100%;
}

/* Form elements */

input,
button,
textarea,
select {
  font: inherit;
}

/* Buttons */

button {
  background: none;
  border: none;
  cursor: pointer;color:var(--color-font);
}

/* Links */

a {
  text-decoration: none;
  color: inherit;
}

/* Lists */

ul,
ol {
  list-style: none;
  padding: 0;
}

/* Tables */

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/* Prevent text overflow */

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* Root stacking context */

#root,
#__next {
  isolation: isolate;
}

/* Smooth scrolling */

html:focus-within {
  scroll-behavior: smooth;
}

/* Accessibility */

:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}

/* Disabled state */

:disabled {
  cursor: not-allowed;
}

/* Reduce motion */

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

input[type="text"] {
    padding: 0;
    border: none;
    border-radius: 0;
    background: none;
}
    input[type="date"] {
    padding: 0;
    border: none;
    border-radius: 0;
    background: none;
}
    input[type="number"] {
    padding: 0;
    border: none;
    border-radius: 0;
    background: none;
}
    textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    resize: none;
    padding: 0;
    border: 0;
    background: transparent;
}