.btn-radio {
    -webkit-appearance: none !important;
    outline: none;
}
input[type="text"], input[type="email"], input[type="password"], input[type="tel"], input[type="date"] {
    -webkit-appearance: none !important;
    border-radius: 0px !important;
    outline: none !important;
}
input["type=checkbox"] {
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  margin: 6px;
  padding: 0;
  border: 2px solid var(--checkbox-border-color);
  background-color: transparent;
  transition: outline 0.1s;
}

:focus {
    -moz-box-shadow: none !important;
    -webkit-appearance: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline-width: 0 !important;
    outline: none !important;
}
select {
    -webkit-appearance: none !important;
    outline: none !important;
}
textarea {
    -webkit-appearance: none !important;
    outline: none;
}
