.auth-method {
  position: relative;
  background: none;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  border: 1px solid #cccccc;
  color: #666666;
  border-radius: 2px;
  width: 100%;
  cursor: pointer;
  text-decoration: none;
  transition: all ease 300ms;
  cursor: pointer;
}

.auth-method:hover {
  background: rgba(15, 15, 15, 0.05);
}

.auth-method:not(:hover) {
  background: rgba(15, 15, 15, 0);
}

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

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

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