/* global.css */
@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
    font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    font-weight: 400;
  
    color-scheme: light;
    color: rgba(255, 255, 255, 0.87);
    background-color: #242424;
    --primary: #00ab8e;
    --secondary: rgb(63, 63, 141);
  
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    color: #213547;
    background-color: #ffffff;
  }

  input[type=checkbox]:checked+div {
    background-image: linear-gradient(180deg,#fc6060 0,#c160fc 33.33%,#7b60e8 69.27%,#3f3cff 100%);
    border-width: 0;
    --tw-text-opacity: 1;
    color: rgba(255,255,255,var(--tw-text-opacity));
}






* {
    scrollbar-width: thin;
    scrollbar-color: var(--secondary) var(--primary);
  }
/*Para ocultar el scroll*/
/* *::-webkit-scrollbar {
    display: none;
  }
   */
/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 7px;
  }
  
  *::-webkit-scrollbar-track {
    background: var(--primary);
    border-radius: 5px;
  }
  
  *::-webkit-scrollbar-thumb {
    background-color: var(--secondary);
    border-radius: 5px;
    border: 3px solid var(--primary);
  }

  body {
    margin: 0;
    min-width: 320px;
    min-height: 100vh;
  }