/*Reset default*/
*:focus {
    outline: none;
    /* outline: 1px solid var(--primaryColor); */
    /* border-radius: 2px; */
  }
  
  body,
  button,
  input,
  textarea,
  .button {
    Font-family: var(--fontFamily);
  }
  
  .button,
  button {
    border: none;
    cursor: pointer;
    background: none;
    padding: 0;
    margin: 0;
    overflow: visible;
    backface-visibility: hidden;
    text-align: center;
  }
  
  a {
    text-decoration: none;
  }
  
  label {
    display: block;
  }
  
  input,
  textarea {
    appearance: none;
    display: block;
    width: 100%;
    box-sizing: border-box;
    border: none;
    padding: 0;
    margin: 0;
  }
  
  input:-webkit-autofill,
  textarea:-webkit-autofill {
    background-clip: text;
  }
  
  input::placeholder,
  textarea::placeholder {
    font-size: inherit;
    font-family: inherit;
    color: inherit;
  }
  
  textarea {
    resize: none;
  }