auth-method a {
  position: relative;
  background: none;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  color: color-mix(in srgb, var(--text), transparent 10%);
  border: 1px solid color-mix(in srgb, currentColor, transparent 60%);
  border-radius: 4px;
  width: 100%;
  cursor: pointer;
  text-decoration: none;
  transition: all ease 300ms;
  cursor: pointer;
}

auth-method a:hover {
  background: color-mix(in srgb, currentColor, transparent 95%);
}

auth-method svg-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

auth-method svg-img{
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  width: auto;
}

auth-method a span {
  font-weight: 500;
  font-size: 14.5px;
  line-height: 18px;
  letter-spacing: 0.02em;
}